From 4f7066dada94a402d867ceca9a668a6e64d12f3c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 18 May 2020 14:44:19 -0400 Subject: Don't bother setting SO_NOSIGPIPE We need to ignore SIGPIPE anyway for other platforms. --- local.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'local.c') diff --git a/local.c b/local.c index 50e49d5..c4aea6f 100644 --- a/local.c +++ b/local.c @@ -215,11 +215,8 @@ struct tls *localAccept(int *fd, int bind) { *fd = sent; } - int yes = 1; - int error = setsockopt(*fd, SOL_SOCKET, SO_NOSIGPIPE, &yes, sizeof(yes)); - if (error) err(EX_OSERR, "setsockopt"); - - error = setsockopt(*fd, SOL_SOCKET, SO_KEEPALIVE, &yes, sizeof(yes)); + int on = 1; + int error = setsockopt(*fd, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)); if (error) err(EX_OSERR, "setsockopt"); int idle = 15 * 60; -- cgit 1.4.1