Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libc-test/semver/dragonfly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -962,6 +962,7 @@ SOCK_MAXADDRLEN
SOCK_NONBLOCK
SOCK_RAW
SOCK_RDM
SOL_LOCAL
SOMAXCONN
SOMAXOPT_SIZE
SO_ACCEPTFILTER
Expand Down
1 change: 1 addition & 0 deletions libc-test/semver/freebsd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1451,6 +1451,7 @@ SOCK_MAXADDRLEN
SOCK_NONBLOCK
SOCK_RAW
SOCK_RDM
SOL_LOCAL
SOMAXCONN
SO_ACCEPTFILTER
SO_BINTIME
Expand Down
1 change: 1 addition & 0 deletions src/unix/bsd/freebsdlike/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,7 @@ pub const TCP_KEEPIDLE: c_int = 256;
pub const TCP_KEEPINTVL: c_int = 512;
pub const TCP_KEEPCNT: c_int = 1024;

pub const SOL_LOCAL: c_int = 0;
pub const SOL_SOCKET: c_int = 0xffff;
pub const SO_DEBUG: c_int = 0x01;
pub const SO_ACCEPTCONN: c_int = 0x0002;
Expand Down