Use send/sendmsg and don't ignore SIGPIPE

This commit is contained in:
2025-09-13 17:25:20 -04:00
parent cd2e15677a
commit 1fa3381e4b
3 changed files with 7 additions and 5 deletions

View File

@@ -264,7 +264,6 @@ int main(int argc, char *argv[]) {
g_server = server.get();
// Setup signal handling
std::signal(SIGPIPE, SIG_IGN);
std::signal(SIGTERM, signal_handler);
std::signal(SIGINT, signal_handler);