aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Net/src/HTTPServerSession.cpp
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/poco/Net/src/HTTPServerSession.cpp
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/poco/Net/src/HTTPServerSession.cpp')
-rw-r--r--contrib/libs/poco/Net/src/HTTPServerSession.cpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/contrib/libs/poco/Net/src/HTTPServerSession.cpp b/contrib/libs/poco/Net/src/HTTPServerSession.cpp
new file mode 100644
index 0000000000..f6d3c4e5b9
--- /dev/null
+++ b/contrib/libs/poco/Net/src/HTTPServerSession.cpp
@@ -0,0 +1,70 @@
+//
+// HTTPServerSession.cpp
+//
+// Library: Net
+// Package: HTTPServer
+// Module: HTTPServerSession
+//
+// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#include "Poco/Net/HTTPServerSession.h"
+
+
+namespace Poco {
+namespace Net {
+
+
+HTTPServerSession::HTTPServerSession(const StreamSocket& socket, HTTPServerParams::Ptr pParams):
+ HTTPSession(socket, pParams->getKeepAlive()),
+ _firstRequest(true),
+ _keepAliveTimeout(pParams->getKeepAliveTimeout()),
+ _maxKeepAliveRequests(pParams->getMaxKeepAliveRequests())
+{
+ setTimeout(pParams->getTimeout());
+ this->socket().setReceiveTimeout(pParams->getTimeout());
+}
+
+
+HTTPServerSession::~HTTPServerSession()
+{
+}
+
+
+bool HTTPServerSession::hasMoreRequests()
+{
+ if (!socket().impl()->initialized()) return false;
+
+ if (_firstRequest)
+ {
+ _firstRequest = false;
+ --_maxKeepAliveRequests;
+ return socket().poll(getTimeout(), Socket::SELECT_READ);
+ }
+ else if (_maxKeepAliveRequests != 0 && getKeepAlive())
+ {
+ if (_maxKeepAliveRequests > 0)
+ --_maxKeepAliveRequests;
+ return buffered() > 0 || socket().poll(_keepAliveTimeout, Socket::SELECT_READ);
+ }
+ else return false;
+}
+
+
+SocketAddress HTTPServerSession::clientAddress()
+{
+ return socket().peerAddress();
+}
+
+
+SocketAddress HTTPServerSession::serverAddress()
+{
+ return socket().address();
+}
+
+
+} } // namespace Poco::Net