We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7aa17df + a25b094 commit b40e9f3Copy full SHA for b40e9f3
library/std/src/sys/pal/unix/net.rs
@@ -86,7 +86,14 @@ impl Socket {
86
// flag to atomically create the socket and set it as
87
// CLOEXEC. On Linux this was added in 2.6.27.
88
let fd = cvt(libc::socket(fam, ty | libc::SOCK_CLOEXEC, 0))?;
89
- Ok(Socket(FileDesc::from_raw_fd(fd)))
+ let socket = Socket(FileDesc::from_raw_fd(fd));
90
+
91
+ // DragonFlyBSD, FreeBSD and NetBSD use `SO_NOSIGPIPE` as a `setsockopt`
92
+ // flag to disable `SIGPIPE` emission on socket.
93
+ #[cfg(any(target_os = "freebsd", target_os = "netbsd", target_os = "dragonfly"))]
94
+ setsockopt(&socket, libc::SOL_SOCKET, libc::SO_NOSIGPIPE, 1)?;
95
96
+ Ok(socket)
97
} else {
98
let fd = cvt(libc::socket(fam, ty, 0))?;
99
let fd = FileDesc::from_raw_fd(fd);
0 commit comments