mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
socks: fix build with boost 1.70
This commit is contained in:
parent
1d83ce8f29
commit
ef92620c1d
1 changed files with 1 additions and 1 deletions
|
@ -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() {}
|
||||
|
|
Loading…
Reference in a new issue