aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-27 13:22:41 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-27 13:22:41 +0000
commitef92620c1df1becdfc6e999b06541652e5bcc863 (patch)
tree8ea26b8143fe2f97656553d6ba0d0ba5e6f64a4d
parentMerge pull request #5090 (diff)
downloadmonero-ef92620c1df1becdfc6e999b06541652e5bcc863.tar.xz
socks: fix build with boost 1.70
-rw-r--r--src/net/socks.cpp2
1 files changed, 1 insertions, 1 deletions
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() {}