aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/fetch/httpparser.h
diff options
context:
space:
mode:
authorantervis <antervis@yandex-team.ru>2022-02-10 16:49:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:48 +0300
commit0942f9eeaefcfc84db83fa240d8ed52b99345e7d (patch)
tree59616090b13df8c4cb69f2a204dc97c93888262c /library/cpp/http/fetch/httpparser.h
parent99ac40630808727955ac0448822228528f1ea92d (diff)
downloadydb-0942f9eeaefcfc84db83fa240d8ed52b99345e7d.tar.gz
Restoring authorship annotation for <antervis@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/fetch/httpparser.h')
-rw-r--r--library/cpp/http/fetch/httpparser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/http/fetch/httpparser.h b/library/cpp/http/fetch/httpparser.h
index 769828e4ae..cc88cbd31d 100644
--- a/library/cpp/http/fetch/httpparser.h
+++ b/library/cpp/http/fetch/httpparser.h
@@ -51,7 +51,7 @@ public:
protected:
int CheckHeaders() {
- if (Header->http_status < HTTP_OK || Header->http_status == HTTP_NO_CONTENT || Header->http_status == HTTP_NOT_MODIFIED) {
+ if (Header->http_status < HTTP_OK || Header->http_status == HTTP_NO_CONTENT || Header->http_status == HTTP_NOT_MODIFIED) {
Header->content_length = 0;
Header->transfer_chunked = 0;
}
@@ -65,7 +65,7 @@ protected:
Header->error = HTTP_BAD_CONTENT_LENGTH;
return 1;
}
- if (Header->http_status == HTTP_OK) {
+ if (Header->http_status == HTTP_OK) {
if (Header->compression_method != HTTP_COMPRESSION_UNSET &&
Header->compression_method != HTTP_COMPRESSION_IDENTITY &&
Header->compression_method != HTTP_COMPRESSION_GZIP &&
@@ -290,12 +290,12 @@ public:
using TBaseT::ParseGeneric;
using TBaseT::State;
- int Init(THttpHeader* H, int parsHeader, int assumeConnectionClosed = 0, bool headRequest = false) {
+ int Init(THttpHeader* H, int parsHeader, int assumeConnectionClosed = 0, bool headRequest = false) {
Header = H;
Eoferr = 1;
Size = 0;
AssumeConnectionClosed = assumeConnectionClosed;
- HeadRequest = headRequest;
+ HeadRequest = headRequest;
return parsHeader ? ParseHeader() : SkipHeader();
}