|
@@ -689,11 +689,8 @@ Server::Server(boost::asio::io_service &io_service,
|
|
|
const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
|
|
|
std::string port)
|
|
|
: io_service_{io_service}, acceptor_{io_service_, endpoint},
|
|
|
- signal_{io_service, SIGUSR1}, host_{host}, port_{port} {
|
|
|
- only_one = false;
|
|
|
+ signal_{io_service, SIGUSR1, SIGTERM}, host_{host}, port_{port} {
|
|
|
keep_accepting = true;
|
|
|
- if (CONFIG["one_connection"])
|
|
|
- only_one = CONFIG["one_connection"].as<int>() == 1;
|
|
|
|
|
|
BUGZ_LOG(info) << "Server::Server()";
|
|
|
signal_.async_wait(boost::bind(&Server::on_signal, this,
|
|
@@ -703,7 +700,7 @@ Server::Server(boost::asio::io_service &io_service,
|
|
|
}
|
|
|
|
|
|
void Server::on_signal(const boost::system::error_code &ec, int signal) {
|
|
|
- BUGZ_LOG(info) << "SIGUSR1";
|
|
|
+ BUGZ_LOG(info) << "on_signal() :" << signal;
|
|
|
keep_accepting = false;
|
|
|
boost::system::error_code error;
|
|
|
acceptor_.cancel(error);
|