|
@@ -688,16 +688,30 @@ void Session::stayin_alive(const boost::system::error_code error) {
|
|
|
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}, host_{host},
|
|
|
- port_{port} {
|
|
|
+ : io_service_{io_service}, acceptor_{io_service_, endpoint},
|
|
|
+ signal_{io_service, SIGUSR1}, host_{host}, port_{port} {
|
|
|
only_one = false;
|
|
|
+ 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,
|
|
|
+ boost::asio::placeholders::error,
|
|
|
+ boost::asio::placeholders::signal_number));
|
|
|
do_accept();
|
|
|
}
|
|
|
|
|
|
+void Server::on_signal(const boost::system::error_code &ec, int signal) {
|
|
|
+ BUGZ_LOG(info) << "SIGUSR1";
|
|
|
+ keep_accepting = false;
|
|
|
+ boost::system::error_code error;
|
|
|
+ acceptor_.cancel(error);
|
|
|
+ BUGZ_LOG(info) << "cancel: " << error;
|
|
|
+ acceptor_.close(error);
|
|
|
+ BUGZ_LOG(info) << "close: " << error;
|
|
|
+}
|
|
|
+
|
|
|
Server::~Server() { BUGZ_LOG(info) << "Server::~Server()"; }
|
|
|
/**
|
|
|
* setup async connect accept
|
|
@@ -715,7 +729,8 @@ void Server::do_accept(void) {
|
|
|
->start();
|
|
|
}
|
|
|
|
|
|
- if (!only_one) {
|
|
|
+ if (keep_accepting) {
|
|
|
+ BUGZ_LOG(info) << "do_accept()";
|
|
|
do_accept();
|
|
|
}
|
|
|
});
|