File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 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) {
33463346 "linux/seccomp.h" ,
33473347 "linux/sock_diag.h" ,
33483348 "linux/sockios.h" ,
3349+ "linux/tls.h" ,
33493350 "linux/uinput.h" ,
33503351 "linux/vm_sockets.h" ,
33513352 "linux/wait.h" ,
Original file line number Diff line number Diff line change @@ -2461,6 +2461,7 @@ SOL_NETBEUI
24612461SOL_NETLINK
24622462SOL_TCP
24632463SOL_TIPC
2464+ SOL_TLS
24642465SOL_UDP
24652466SOL_X25
24662467SOMAXCONN
@@ -2853,6 +2854,7 @@ TIOCSCTTY
28532854TIOCSPGRP
28542855TIOCSSOFTCAR
28552856TIOCSTI
2857+ TLS_GET_RECORD_TYPE
28562858TUN_READQ_SIZE
28572859TUN_TAP_DEV
28582860TUN_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;
31823182pub const HWTSTAMP_FILTER_PTP_V2_DELAY_REQ : :: c_uint = 14 ;
31833183pub const HWTSTAMP_FILTER_NTP_ALL : :: c_uint = 15 ;
31843184
3185+ // linux/tls.h
3186+ pub const TLS_GET_RECORD_TYPE : :: c_int = 2 ;
3187+
3188+ pub const SOL_TLS : :: c_int = 282 ;
3189+
31853190// linux/if_alg.h
31863191pub const ALG_SET_KEY : :: c_int = 1 ;
31873192pub const ALG_SET_IV : :: c_int = 2 ;
You can’t perform that action at this time.
0 commit comments