diff options
author | yuraaka <yuraaka@yandex-team.ru> | 2022-02-10 16:47:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:05 +0300 |
commit | 5577dc406121f6fb3f45b227c01f4251880193a1 (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /library/cpp/http/io/headers.h | |
parent | 4230543261d7a38ef4dc14785ae0d45f2da43704 (diff) | |
download | ydb-5577dc406121f6fb3f45b227c01f4251880193a1.tar.gz |
Restoring authorship annotation for <yuraaka@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/io/headers.h')
-rw-r--r-- | library/cpp/http/io/headers.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/http/io/headers.h b/library/cpp/http/io/headers.h index 16e979236c..a71793d1c6 100644 --- a/library/cpp/http/io/headers.h +++ b/library/cpp/http/io/headers.h @@ -2,9 +2,9 @@ #include <util/generic/string.h> #include <util/generic/strbuf.h> -#include <util/generic/deque.h> +#include <util/generic/deque.h> #include <util/generic/vector.h> -#include <util/string/cast.h> +#include <util/string/cast.h> class IInputStream; class IOutputStream; @@ -105,10 +105,10 @@ public: /// Удаляет заголовок, если он есть. void RemoveHeader(TStringBuf header); - /// Ищет заголовок по указанному имени - /// Возвращает nullptr, если не нашел + /// Ищет заголовок по указанному имени + /// Возвращает nullptr, если не нашел const THttpInputHeader* FindHeader(TStringBuf header) const; - + /// Записывает все заголовки контейнера в поток. /// @details Каждый заголовк записывается в виде "имя параметра: значение\r\n". void OutTo(IOutputStream* stream) const; |