From 4328286e32803941e6c78be4655d6f0642544752 Mon Sep 17 00:00:00 2001 From: "gavin.smith@coralbay.tv" Date: Sun, 30 Dec 2018 00:33:32 +0000 Subject: [PATCH] Fixed compiler error. --- server_http.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_http.hpp b/server_http.hpp index 5d3ba4f..b4e5e68 100644 --- a/server_http.hpp +++ b/server_http.hpp @@ -406,7 +406,7 @@ namespace SimpleWeb { #if defined(__linux__) && defined(TCP_FASTOPEN) const int qlen = 5; // This seems to be the value that is used in other examples. boost::system::error_code ec; - acceptor->set_option(boost::asio::detail::socket_option::integer(qlen), ec); + acceptor->set_option(asio::detail::socket_option::integer(qlen), ec); #endif // End Linux } acceptor->bind(endpoint);