made set_reuse_port unix only
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
This commit is contained in:
parent
8cab8ab011
commit
e75a145b0e
@ -180,6 +180,7 @@ impl<
|
|||||||
// Create a TCP listener bound to two addresses.
|
// Create a TCP listener bound to two addresses.
|
||||||
let socket = Socket::new(Domain::IPV4, Type::STREAM, None)?;
|
let socket = Socket::new(Domain::IPV4, Type::STREAM, None)?;
|
||||||
socket.set_reuse_address(cfg.reuse_addr)?;
|
socket.set_reuse_address(cfg.reuse_addr)?;
|
||||||
|
#[cfg(unix)]
|
||||||
socket.set_reuse_port(cfg.reuse_port)?;
|
socket.set_reuse_port(cfg.reuse_port)?;
|
||||||
let addr = (cfg.addr).into();
|
let addr = (cfg.addr).into();
|
||||||
socket.bind(&addr)?;
|
socket.bind(&addr)?;
|
||||||
|
Loading…
Reference in New Issue
Block a user