File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class TCP : public TransportInterface
4949
5050 private:
5151 // / Boost Asio I/O functionality
52- boost::asio::io_service mIoService ;
52+ boost::asio::io_context mIoService ;
5353
5454 // / TCP socket
5555 boost::asio::ip::tcp::socket mSocket ;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class UDP : public TransportInterface
4949
5050 private:
5151 // / Boost Asio I/O functionality
52- boost::asio::io_service mIoService ;
52+ boost::asio::io_context mIoService ;
5353
5454 // / UDP socket
5555 boost::asio::ip::udp::socket mSocket ;
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class Unix : public TransportInterface
4747
4848 private:
4949 // / Boost Asio I/O functionality
50- boost::asio::io_service mIoService ;
50+ boost::asio::io_context mIoService ;
5151#if defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
5252 // / Unix socket
5353 boost::asio::local::datagram_protocol::socket mSocket ;
You can’t perform that action at this time.
0 commit comments