about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-02 16:33:08 -0400
committerJune McEnroe <june@causal.agency>2020-04-02 16:33:08 -0400
commit52d77847622273fe9ec42a083261c09fe82d057e (patch)
tree1146a8e532389d02dd614b5a358cd0e60379dc3e
parentSend ERR_NOMOTD during sync (diff)
downloadpounce-52d77847622273fe9ec42a083261c09fe82d057e.tar.gz
pounce-52d77847622273fe9ec42a083261c09fe82d057e.zip
Do not crash on error from accept in calico
-rw-r--r--dispatch.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/dispatch.c b/dispatch.c
index c2e2d50..c558729 100644
--- a/dispatch.c
+++ b/dispatch.c
@@ -252,7 +252,10 @@ int main(int argc, char *argv[]) {
 
 			if (i < binds) {
 				int sock = accept(event.ptr[i].fd, NULL, NULL);
-				if (sock < 0) err(EX_IOERR, "accept");
+				if (sock < 0) {
+					warn("accept");
+					continue;
+				}
 
 				int yes = 1;
 				error = setsockopt(