From d4640cf194b49047323475f22af1b48f20aaeff9 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 30 Dec 2011 04:58:29 +0000 Subject: changed boost::asio::ip::tcp::acceptor::io_service() to get_io_service() --- src/syncServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/syncServer.cpp b/src/syncServer.cpp index 4003dba..71052b8 100644 --- a/src/syncServer.cpp +++ b/src/syncServer.cpp @@ -112,7 +112,7 @@ void SyncServer::start_accept() std::list::iterator it = acceptors_.begin(); for(; it != acceptors_.end(); ++it) { if(!it->started_) { - SyncTcpConnection::pointer new_connection = SyncTcpConnection::create(it->acceptor_->io_service()); + SyncTcpConnection::pointer new_connection = SyncTcpConnection::create(it->acceptor_->get_io_service()); conns_.push_back(new_connection); it->acceptor_->async_accept(new_connection->socket(), boost::bind(&SyncServer::handle_accept, this, new_connection, boost::asio::placeholders::error, it)); -- cgit v1.2.3