void sc_osc_handler::start_tcp_accept(void) {
- tcp_connection::pointer new_connection = tcp_connection::create(tcp_acceptor_.get_io_service());
+ tcp_connection::pointer new_connection = tcp_connection::create(tcp_acceptor_.get_executor().context());
tcp_acceptor_.async_accept(new_connection->socket(),
boost::bind(&sc_osc_handler::handle_tcp_accept, this, new_connection,
#include <type_traits>
+#include <boost/checked_delete.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/noncopyable.hpp>
#include <boost/detail/atomic_count.hpp>