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
1140
1140
SO_REUSEPORT_LB
1141
1141
SO_SETFIB
1142
1142
SO_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
1143
1150
SO_USELOOPBACK
1144
1151
SO_USER_COOKIE
1145
1152
SO_VENDOR
Original file line number Diff line number Diff line change @@ -2313,9 +2313,17 @@ pub const SO_SETFIB: ::c_int = 0x1014;
2313
2313
pub const SO_USER_COOKIE : :: c_int = 0x1015 ;
2314
2314
pub const SO_PROTOCOL : :: c_int = 0x1016 ;
2315
2315
pub const SO_PROTOTYPE : :: c_int = SO_PROTOCOL ;
2316
+ pub const SO_TS_CLOCK : :: c_int = 0x1017 ;
2316
2317
pub const SO_DOMAIN : :: c_int = 0x1019 ;
2317
2318
pub const SO_VENDOR : :: c_int = 0x80000000 ;
2318
2319
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
+
2319
2327
pub const LOCAL_CREDS : :: c_int = 2 ;
2320
2328
pub const LOCAL_CREDS_PERSISTENT : :: c_int = 3 ;
2321
2329
pub const LOCAL_CONNWAIT : :: c_int = 4 ;
You can’t perform that action at this time.
0 commit comments