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/net | |
| parent | 1d83ce8f298850f4c16a110b87245377166cb17c (diff) | |
| download | monzero-core-ef92620c1df1becdfc6e999b06541652e5bcc863.tar.gz monzero-core-ef92620c1df1becdfc6e999b06541652e5bcc863.tar.xz monzero-core-ef92620c1df1becdfc6e999b06541652e5bcc863.zip | |
socks: fix build with boost 1.70
Diffstat (limited to 'src/net')
| -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() {} |
