diff options
author | June McEnroe <june@causal.agency> | 2020-05-18 14:44:19 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-05-18 14:44:19 -0400 |
commit | 4f7066dada94a402d867ceca9a668a6e64d12f3c (patch) | |
tree | 9f9aa93653fad589a85d843e656ab428435cc08c /compat.h | |
parent | Enable TCP keepalive with half-hour idle (diff) | |
download | pounce-4f7066dada94a402d867ceca9a668a6e64d12f3c.tar.gz pounce-4f7066dada94a402d867ceca9a668a6e64d12f3c.zip |
Don't bother setting SO_NOSIGPIPE
We need to ignore SIGPIPE anyway for other platforms.
Diffstat (limited to '')
-rw-r--r-- | compat.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compat.h b/compat.h index 01ef10c..f8057c4 100644 --- a/compat.h +++ b/compat.h @@ -27,11 +27,6 @@ uint32_t arc4random(void); void arc4random_buf(void *buf, size_t nbytes); uint32_t arc4random_uniform(uint32_t upper_bound); -// The default value of SO_RCVLOWAT is 1 anyway... -#ifndef SO_NOSIGPIPE -#define SO_NOSIGPIPE SO_RCVLOWAT -#endif - #ifndef SIGINFO #define SIGINFO SIGUSR2 #endif |