diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 17:28:10 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-08-10 19:19:53 +0200 |
commit | ccb27970828eeda5aa1f5aa6094a9acfaf093c35 (patch) | |
tree | ccb773d5572d7e326e8d861afdc4d4376423eafa | |
parent | 753eacab420348265da7c5c1e00c477297d65aac (diff) | |
download | xK-ccb27970828eeda5aa1f5aa6094a9acfaf093c35.tar.gz xK-ccb27970828eeda5aa1f5aa6094a9acfaf093c35.tar.xz xK-ccb27970828eeda5aa1f5aa6094a9acfaf093c35.zip |
kike: proper shutdown on accept() failure
-rw-r--r-- | kike.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2645,9 +2645,11 @@ on_irc_client_available (const struct pollfd *pfd, void *user_data) continue; // TODO: handle resource exhaustion (EMFILE, ENFILE) specially - // (stop accepting new connections and wait until we close some). - // FIXME: handle this better, bring the server down cleanly. - exit_fatal ("%s: %s", "accept", strerror (errno)); + // (stop accepting new connections and wait until we close some; + // also set a timer in case of ENFILE). + print_fatal ("%s: %s", "accept", strerror (errno)); + irc_initiate_quit (ctx); + break; } if (ctx->max_connections != 0 && ctx->n_clients >= ctx->max_connections) |