diff options
author | June McEnroe <june@causal.agency> | 2017-08-08 19:00:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-08-08 19:00:54 -0400 |
commit | a58e055fa574c29e833f1fdeb098225594496c76 (patch) | |
tree | 2a2db4ba40e620b4c145443c99f1251e0e921a84 | |
parent | Rewrite help (diff) | |
download | torus-a58e055fa574c29e833f1fdeb098225594496c76.tar.gz torus-a58e055fa574c29e833f1fdeb098225594496c76.zip |
Turn off SIGPIPE at the socket level
I imagine it's better to not generate SIGPIPE at all rather than generate and ignore.
-rwxr-xr-x | server.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server.c b/server.c index fc3b3d0..8ad47ba 100755 --- a/server.c +++ b/server.c @@ -260,8 +260,6 @@ static bool clientPut(const struct Client *client, uint8_t color, char cell) { int main() { int error; - signal(SIGPIPE, SIG_IGN); - tilesMap(); int server = socket(PF_LOCAL, SOCK_STREAM, 0); @@ -304,6 +302,10 @@ int main() { if (fd < 0) err(EX_IOERR, "accept"); fcntl(fd, F_SETFL, O_NONBLOCK); + int on = 1; + error = setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &on, sizeof(on)); + if (error) err(EX_IOERR, "setsockopt"); + struct Client *client = clientAdd(fd); struct kevent event = { |