Skip to content

Commit b40e9f3

Browse files
authored
Unrolled build for rust-lang#124470
Rollup merge of rust-lang#124470 - devnexen:no_sigpipe_fbsd, r=workingjubilee std::net: Socket::new_raw now set to SO_NOSIGPIPE on freebsd.
2 parents 7aa17df + a25b094 commit b40e9f3

File tree

1 file changed

+8
-1
lines changed
  • library/std/src/sys/pal/unix

1 file changed

+8
-1
lines changed

library/std/src/sys/pal/unix/net.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,14 @@ impl Socket {
8686
// flag to atomically create the socket and set it as
8787
// CLOEXEC. On Linux this was added in 2.6.27.
8888
let fd = cvt(libc::socket(fam, ty | libc::SOCK_CLOEXEC, 0))?;
89-
Ok(Socket(FileDesc::from_raw_fd(fd)))
89+
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)
9097
} else {
9198
let fd = cvt(libc::socket(fam, ty, 0))?;
9299
let fd = FileDesc::from_raw_fd(fd);

0 commit comments

Comments
 (0)