Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Transports/TCP.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TCP : public TransportInterface

private:
/// Boost Asio I/O functionality
boost::asio::io_service mIoService;
boost::asio::io_context mIoService;

/// TCP socket
boost::asio::ip::tcp::socket mSocket;
Expand Down
2 changes: 1 addition & 1 deletion src/Transports/UDP.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class UDP : public TransportInterface

private:
/// Boost Asio I/O functionality
boost::asio::io_service mIoService;
boost::asio::io_context mIoService;

/// UDP socket
boost::asio::ip::udp::socket mSocket;
Expand Down
2 changes: 1 addition & 1 deletion src/Transports/Unix.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Unix : public TransportInterface

private:
/// Boost Asio I/O functionality
boost::asio::io_service mIoService;
boost::asio::io_context mIoService;
#if defined(BOOST_ASIO_HAS_LOCAL_SOCKETS)
/// Unix socket
boost::asio::local::datagram_protocol::socket mSocket;
Expand Down
Loading