summaryrefslogtreecommitdiff
path: root/httpd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.cpp')
-rw-r--r--httpd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.cpp b/httpd.cpp
index e8d8a2c..d88efb8 100644
--- a/httpd.cpp
+++ b/httpd.cpp
@@ -11,7 +11,7 @@ void HTTP::Server::add_handler(const std::string& name, Handler handler) {
}
void HTTP::Server::start_accept() {
- Connection::p new_connection = Connection::p(new Connection(acceptor_.io_service()));
+ Connection::p new_connection = Connection::p(new Connection(acceptor_.get_io_service()));
acceptor_.async_accept(new_connection->socket, boost::bind(&Server::handle_accept, this, new_connection, boost::asio::placeholders::error));
}