| 60 | } |
| 61 | |
| 62 | TStringBuf TBaseServerRequestData::HeaderInOrEmpty(TStringBuf key) const { |
| 63 | const auto* ptr = HeaderIn(key); |
| 64 | return ptr ? TStringBuf{*ptr} : TStringBuf{}; |
| 65 | } |
| 66 | |
| 67 | TString TBaseServerRequestData::HeaderByIndex(size_t n) const noexcept { |
| 68 | if (n >= HeadersIn_.size()) { |