File tree 3 files changed +8
-0
lines changed
src/unix/linux_like/linux
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3346,6 +3346,7 @@ fn test_linux(target: &str) {
3346
3346
"linux/seccomp.h" ,
3347
3347
"linux/sock_diag.h" ,
3348
3348
"linux/sockios.h" ,
3349
+ "linux/tls.h" ,
3349
3350
"linux/uinput.h" ,
3350
3351
"linux/vm_sockets.h" ,
3351
3352
"linux/wait.h" ,
Original file line number Diff line number Diff line change @@ -2461,6 +2461,7 @@ SOL_NETBEUI
2461
2461
SOL_NETLINK
2462
2462
SOL_TCP
2463
2463
SOL_TIPC
2464
+ SOL_TLS
2464
2465
SOL_UDP
2465
2466
SOL_X25
2466
2467
SOMAXCONN
@@ -2853,6 +2854,7 @@ TIOCSCTTY
2853
2854
TIOCSPGRP
2854
2855
TIOCSSOFTCAR
2855
2856
TIOCSTI
2857
+ TLS_GET_RECORD_TYPE
2856
2858
TUN_READQ_SIZE
2857
2859
TUN_TAP_DEV
2858
2860
TUN_TUN_DEV
Original file line number Diff line number Diff line change @@ -3182,6 +3182,11 @@ pub const HWTSTAMP_FILTER_PTP_V2_SYNC: ::c_uint = 13;
3182
3182
pub const HWTSTAMP_FILTER_PTP_V2_DELAY_REQ : :: c_uint = 14 ;
3183
3183
pub const HWTSTAMP_FILTER_NTP_ALL : :: c_uint = 15 ;
3184
3184
3185
+ // linux/tls.h
3186
+ pub const TLS_GET_RECORD_TYPE : :: c_int = 2 ;
3187
+
3188
+ pub const SOL_TLS : :: c_int = 282 ;
3189
+
3185
3190
// linux/if_alg.h
3186
3191
pub const ALG_SET_KEY : :: c_int = 1 ;
3187
3192
pub const ALG_SET_IV : :: c_int = 2 ;
You can’t perform that action at this time.
0 commit comments