File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/unix/bsd/freebsdlike/freebsd Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1140,6 +1140,13 @@ SO_REUSEPORT
11401140SO_REUSEPORT_LB
11411141SO_SETFIB
11421142SO_TIMESTAMP
1143+ SO_TS_CLOCK
1144+ SO_TS_REALTIME_MICRO
1145+ SO_TS_BINTIME
1146+ SO_TS_REALTIME
1147+ SO_TS_MONOTONIC
1148+ SO_TS_DEFAULT
1149+ SO_TS_CLOCK_MAX
11431150SO_USELOOPBACK
11441151SO_USER_COOKIE
11451152SO_VENDOR
Original file line number Diff line number Diff line change @@ -2313,9 +2313,17 @@ pub const SO_SETFIB: ::c_int = 0x1014;
23132313pub const SO_USER_COOKIE : :: c_int = 0x1015 ;
23142314pub const SO_PROTOCOL : :: c_int = 0x1016 ;
23152315pub const SO_PROTOTYPE : :: c_int = SO_PROTOCOL ;
2316+ pub const SO_TS_CLOCK : :: c_int = 0x1017 ;
23162317pub const SO_DOMAIN : :: c_int = 0x1019 ;
23172318pub const SO_VENDOR : :: c_int = 0x80000000 ;
23182319
2320+ pub const SO_TS_REALTIME_MICRO : :: c_int = 0 ;
2321+ pub const SO_TS_BINTIME : :: c_int = 1 ;
2322+ pub const SO_TS_REALTIME : :: c_int = 2 ;
2323+ pub const SO_TS_MONOTONIC : :: c_int = 3 ;
2324+ pub const SO_TS_DEFAULT : :: c_int = SO_TS_REALTIME_MICRO ;
2325+ pub const SO_TS_CLOCK_MAX : :: c_int = SO_TS_MONOTONIC ;
2326+
23192327pub const LOCAL_CREDS : :: c_int = 2 ;
23202328pub const LOCAL_CREDS_PERSISTENT : :: c_int = 3 ;
23212329pub const LOCAL_CONNWAIT : :: c_int = 4 ;
You can’t perform that action at this time.
0 commit comments