summaryrefslogtreecommitdiffhomepage
path: root/http.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-05-31 10:17:11 +0200
committerRoland Reichwein <mail@reichwein.it>2020-05-31 10:17:11 +0200
commit358808f9cac094e1d02b467ea61bd2ea915ed5e6 (patch)
tree7dd5432872e67628c75b3fe20345d87dfb3147d4 /http.cpp
parentb715de1eb6f937b0a05d91842041a54455946061 (diff)
Compile fix for debian 10
Diffstat (limited to 'http.cpp')
-rw-r--r--http.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/http.cpp b/http.cpp
index 1d3edee..1ea960d 100644
--- a/http.cpp
+++ b/http.cpp
@@ -63,7 +63,11 @@ class session : public std::enable_shared_from_this<session>
void handle_request(::Server& server, request_type&& req)
{
+#ifdef BOOST_LATEST
stream_.expires_after(std::chrono::seconds(300)); // timeout on write by server much longer than read timeout from client
+#else
+ // socket_.expires_after(std::chrono::seconds(300)); // not supported by old boost
+#endif
auto sp = std::make_shared<response_type>(generate_response(req, server));
res_ = sp;