diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-27 13:22:41 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-27 13:22:41 +0000 |
commit | ef92620c1df1becdfc6e999b06541652e5bcc863 (patch) | |
tree | 8ea26b8143fe2f97656553d6ba0d0ba5e6f64a4d /src | |
parent | Merge pull request #5090 (diff) | |
download | monero-ef92620c1df1becdfc6e999b06541652e5bcc863.tar.xz |
socks: fix build with boost 1.70
Diffstat (limited to 'src')
-rw-r--r-- | src/net/socks.cpp | 2 |
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() {} |