From 358808f9cac094e1d02b467ea61bd2ea915ed5e6 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sun, 31 May 2020 10:17:11 +0200 Subject: Compile fix for debian 10 --- https.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'https.cpp') diff --git a/https.cpp b/https.cpp index 50ea31c..7ba3b74 100644 --- a/https.cpp +++ b/https.cpp @@ -98,7 +98,11 @@ class session : public std::enable_shared_from_this void handle_request(::Server& server, request_type&& req) { +#ifdef BOOST_LATEST beast::get_lowest_layer(stream_).expires_after(std::chrono::seconds(300)); // timeout on write by server much longer than read timeout from client +#else + // beast::get_lowest_layer(stream_).expires_after(std::chrono::seconds(300)); // not supported by boost +#endif auto sp = std::make_shared(generate_response(req, server)); res_ = sp; -- cgit v1.2.3