From 84ebe12828cfe2508dce0c523fab3c867741e602 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 26 Aug 2020 11:18:47 +0200 Subject: Fixes #151: compilation issue with standalone asio 1.18 --- asio_compatibility.hpp | 6 +++--- client_ws.hpp | 2 +- server_ws.hpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/asio_compatibility.hpp b/asio_compatibility.hpp index a9abd7c..3d2df07 100644 --- a/asio_compatibility.hpp +++ b/asio_compatibility.hpp @@ -42,9 +42,9 @@ namespace SimpleWeb { inline asio::ip::address make_address(const std::string &str) noexcept { return asio::ip::make_address(str); } - template - asio::executor get_socket_executor(socket_type &socket) { - return socket.get_executor(); + template + asio::steady_timer make_steady_timer(socket_type &socket, std::chrono::duration duration) { + return asio::steady_timer(socket.get_executor(), duration); } template void async_resolve(asio::ip::tcp::resolver &resolver, const std::pair &host_port, handler_type &&handler) { diff --git a/client_ws.hpp b/client_ws.hpp index b5ce2d7..3448c3a 100644 --- a/client_ws.hpp +++ b/client_ws.hpp @@ -106,7 +106,7 @@ namespace SimpleWeb { return; } - timer = std::unique_ptr(new asio::steady_timer(get_socket_executor(*socket), std::chrono::seconds(seconds))); + timer = std::unique_ptr(new asio::steady_timer(make_steady_timer(*socket, std::chrono::seconds(seconds)))); std::weak_ptr connection_weak(this->shared_from_this()); // To avoid keeping Connection instance alive longer than needed timer->async_wait([connection_weak, use_timeout_idle](const error_code &ec) { if(!ec) { diff --git a/server_ws.hpp b/server_ws.hpp index 158813d..90379ae 100644 --- a/server_ws.hpp +++ b/server_ws.hpp @@ -160,7 +160,7 @@ namespace SimpleWeb { return; } - timer = std::unique_ptr(new asio::steady_timer(get_socket_executor(*socket), std::chrono::seconds(seconds))); + timer = std::unique_ptr(new asio::steady_timer(make_steady_timer(*socket, std::chrono::seconds(seconds)))); std::weak_ptr connection_weak(this->shared_from_this()); // To avoid keeping Connection instance alive longer than needed timer->async_wait([connection_weak](const error_code &ec) { if(!ec) { -- cgit v1.2.3