diff options
author | Angelo Mantellini <angelo.mantellini@irt-systemx.fr> | 2018-03-15 17:00:56 +0100 |
---|---|---|
committer | Angelo Mantellini <angelo.mantellini@irt-systemx.fr> | 2018-03-15 17:13:34 +0100 |
commit | 84d2b8cbba83fcad8afef4cc07a60e9dd7b298e0 (patch) | |
tree | 4b9e41d26a0abed4f45b543932a5ab9784c1469c | |
parent | 031327f64f5be8a0a2d865864cace53bf7932c9c (diff) |
correct boost error in mac os x
Change-Id: I81a52a1b090fb1b05edcf13dc5c6db8e45d5660e
Signed-off-by: Angelo Mantellini <angelo.mantellini@irt-systemx.fr>
-rw-r--r-- | http-server/http_server.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http-server/http_server.cc b/http-server/http_server.cc index a0ec905f..a92c8fd9 100644 --- a/http-server/http_server.cc +++ b/http-server/http_server.cc @@ -159,9 +159,9 @@ void HttpServer::start() { } void HttpServer::stop() { - acceptor_.close(); - io_service_.stop(); + +acceptor_.close(); std::map<int, std::shared_ptr<libl4::http::HTTPServerPublisher>>& icn_publishers = icn_acceptor_->getPublishers(); |