diff options
| author | Alexander Smirnov <[email protected]> | 2025-04-01 00:52:07 +0000 |
|---|---|---|
| committer | Alexander Smirnov <[email protected]> | 2025-04-01 00:52:07 +0000 |
| commit | 7b1dd0572a50d5e1d1dc0d973dd7b686ec5d1cfa (patch) | |
| tree | 77b99773cdbad1af81f9e310eebc0d9f361dafba /library/cpp/http/misc/httpreqdata.cpp | |
| parent | 4ae39ac0db24e7564f13a3d0545a540bd647283c (diff) | |
| parent | 0afdf94708e28c1ce387764b1a93c32da0cd2350 (diff) | |
Merge branch 'rightlib' into merge-libs-250401-0050
Diffstat (limited to 'library/cpp/http/misc/httpreqdata.cpp')
| -rw-r--r-- | library/cpp/http/misc/httpreqdata.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/http/misc/httpreqdata.cpp b/library/cpp/http/misc/httpreqdata.cpp index ed5e8872c92..028418bc4a0 100644 --- a/library/cpp/http/misc/httpreqdata.cpp +++ b/library/cpp/http/misc/httpreqdata.cpp @@ -81,6 +81,8 @@ TStringBuf TBaseServerRequestData::Environment(TStringBuf key) const { return ip ? *ip : RemoteAddr(); } else if (ciKey == "QUERY_STRING") { return Query(); + } else if (ciKey == "BODY") { + return Body(); } else if (ciKey == "SERVER_NAME") { return ServerName(); } else if (ciKey == "SERVER_PORT") { |
