refactor: 시그널 관리 컨텍스트와 네트워크 서비스 컨텍스트 통합

This commit is contained in:
bumpsoo 2026-02-05 13:52:11 +00:00
parent 2d35fd6c8b
commit 57756a5f16
3 changed files with 8 additions and 5 deletions

View file

@ -32,7 +32,7 @@ int main() {
return 1;
}
NetworkService server(port, threadCount);
NetworkService server(main_context, port, threadCount);
server.Run();
boost::asio::signal_set signals(main_context, SIGINT, SIGTERM);