From ef92620c1df1becdfc6e999b06541652e5bcc863 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Wed, 27 Mar 2019 13:22:41 +0000 Subject: [PATCH] socks: fix build with boost 1.70 --- src/net/socks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/socks.cpp b/src/net/socks.cpp index 9b81c6c2e..5a27e16f4 100644 --- a/src/net/socks.cpp +++ b/src/net/socks.cpp @@ -221,7 +221,7 @@ namespace socks }; client::client(stream_type::socket&& proxy, socks::version ver) - : proxy_(std::move(proxy)), strand_(proxy_.get_io_service()), buffer_size_(0), buffer_(), ver_(ver) + : proxy_(std::move(proxy)), strand_(GET_IO_SERVICE(proxy_)), buffer_size_(0), buffer_(), ver_(ver) {} client::~client() {}