aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/server/http.cpp
diff options
context:
space:
mode:
authorOleg Sidorkin <osidorkin@gmail.com>2022-02-10 16:49:36 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:36 +0300
commit5ce74d4fee2d42a4b86efc02dfdc704d458760e1 (patch)
treef16a3558ca40d453a1c6a2ed764bd75d64cffade /library/cpp/http/server/http.cpp
parentcd33f9aa8461f8e2b0b9e68efbb6bc9856197dc9 (diff)
downloadydb-5ce74d4fee2d42a4b86efc02dfdc704d458760e1.tar.gz
Restoring authorship annotation for Oleg Sidorkin <osidorkin@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/server/http.cpp')
-rw-r--r--library/cpp/http/server/http.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp
index 128583bdd70..653e0a15f13 100644
--- a/library/cpp/http/server/http.cpp
+++ b/library/cpp/http/server/http.cpp
@@ -695,13 +695,13 @@ void TClientRequest::Process(void* ThreadSpecificResource) {
HttpConn_->Output()->EnableCompression(HttpServ()->Options().CompressionEnabled);
}
- if (ParsedHeaders.empty()) {
- RequestString = Input().FirstLine();
+ if (ParsedHeaders.empty()) {
+ RequestString = Input().FirstLine();
const THttpHeaders& h = Input().Headers();
- ParsedHeaders.reserve(h.Count());
+ ParsedHeaders.reserve(h.Count());
for (THttpHeaders::TConstIterator it = h.Begin(); it != h.End(); ++it) {
- ParsedHeaders.emplace_back(it->Name(), it->Value());
+ ParsedHeaders.emplace_back(it->Name(), it->Value());
}
}
@@ -750,7 +750,7 @@ void TClientRequest::ProcessFailRequest(int failstate) {
++idx;
}
- url = RequestString.substr(start, idx - start);
+ url = RequestString.substr(start, idx - start);
}
}