close fds and exit the program cleanly

This commit is contained in:
bettercallous
2024-04-11 18:02:52 +00:00
parent 92ac924f0a
commit 21f497ef0a
3 changed files with 16 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ int main(int ac, char **av)
server.init();
server.run();
} catch (std::exception& e) {
server.closeFds();
std::cerr << e.what() << std::endl;
return 1;
}