aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-03-15 17:00:56 +0100
committerAngelo Mantellini <angelo.mantellini@irt-systemx.fr>2018-03-15 17:13:34 +0100
commit84d2b8cbba83fcad8afef4cc07a60e9dd7b298e0 (patch)
tree4b9e41d26a0abed4f45b543932a5ab9784c1469c
parent031327f64f5be8a0a2d865864cace53bf7932c9c (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.cc4
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();