File tree 3 files changed +341
-1
lines changed
src/unix/linux_like/linux
3 files changed +341
-1
lines changed Original file line number Diff line number Diff line change @@ -4166,6 +4166,10 @@ fn test_linux(target: &str) {
4166
4166
( struct_ == "ifreq" && field == "ifr_ifru" ) ||
4167
4167
// the `ifc_ifcu` field is an anonymous union
4168
4168
( struct_ == "ifconf" && field == "ifc_ifcu" ) ||
4169
+ // the `ifr_ifrn` field is an anonymous union
4170
+ ( struct_ == "iwreq" && field == "ifr_ifrn" ) ||
4171
+ // the `key` field is a zero-sized array
4172
+ ( struct_ == "iw_encode_ext" && field == "key" ) ||
4169
4173
// glibc uses a single array `uregs` instead of individual fields.
4170
4174
( struct_ == "user_regs" && arm)
4171
4175
} ) ;
Original file line number Diff line number Diff line change @@ -2529,6 +2529,9 @@ SIOCIWFIRSTPRIV
2529
2529
SIOCIWLASTPRIV
2530
2530
SIOCIWFIRST
2531
2531
SIOCIWLAST
2532
+ IW_IOCTL_IDX
2533
+ IW_IS_SET
2534
+ IW_IS_GET
2532
2535
IWEVTXDROP
2533
2536
IWEVQUAL
2534
2537
IWEVCUSTOM
@@ -2540,6 +2543,7 @@ IWEVASSOCREQIE
2540
2543
IWEVASSOCRESPIE
2541
2544
IWEVPMKIDCAND
2542
2545
IWEVFIRST
2546
+ IW_EVENT_IDX
2543
2547
IW_PRIV_TYPE_MASK
2544
2548
IW_PRIV_TYPE_NONE
2545
2549
IW_PRIV_TYPE_BYTE
@@ -2696,13 +2700,30 @@ IW_ENC_CAPA_WPA2
2696
2700
IW_ENC_CAPA_CIPHER_TKIP
2697
2701
IW_ENC_CAPA_CIPHER_CCMP
2698
2702
IW_ENC_CAPA_4WAY_HANDSHAKE
2703
+ IW_EVENT_CAPA_BASE
2704
+ IW_EVENT_CAPA_INDEX
2705
+ IW_EVENT_CAPA_MASK
2706
+ IW_EVENT_CAPA_K_0
2707
+ IW_EVENT_CAPA_K_1
2699
2708
IW_PMKSA_ADD
2700
2709
IW_PMKSA_REMOVE
2701
2710
IW_PMKSA_FLUSH
2702
2711
IW_PMKID_LEN
2703
2712
IW_PMKID_CAND_PREAUTH
2704
- IW_EV_CHAR_PK_LEN
2713
+ IW_EV_LCP_LEN
2714
+ IW_EV_CHAR_LEN
2715
+ IW_EV_UINT_LEN
2716
+ IW_EV_FREQ_LEN
2717
+ IW_EV_PARAM_LEN
2718
+ IW_EV_ADDR_LEN
2719
+ IW_EV_QUAL_LEN
2705
2720
IW_EV_LCP_PK_LEN
2721
+ IW_EV_CHAR_PK_LEN
2722
+ IW_EV_UINT_PK_LEN
2723
+ IW_EV_FREQ_PK_LEN
2724
+ IW_EV_PARAM_PK_LEN
2725
+ IW_EV_ADDR_PK_LEN
2726
+ IW_EV_QUAL_PK_LEN
2706
2727
IW_EV_POINT_PK_LEN
2707
2728
SI_LOAD_SHIFT
2708
2729
SND_CNT
@@ -3532,6 +3553,25 @@ ip_mreqn
3532
3553
ip_mreq_source
3533
3554
ipc_perm
3534
3555
itimerspec
3556
+ iw_discarded
3557
+ iw_encode_ext
3558
+ iw_event
3559
+ iw_freq
3560
+ iw_michaelmicfailure
3561
+ iw_missed
3562
+ iw_mlme
3563
+ iw_param
3564
+ iw_pmkid_cand
3565
+ iw_pmksa
3566
+ iw_point
3567
+ iw_priv_args
3568
+ iw_quality
3569
+ iw_range
3570
+ iwreq
3571
+ iwreq_data
3572
+ iw_scan_req
3573
+ iw_statistics
3574
+ iw_thrspy
3535
3575
j1939_filter
3536
3576
jrand48
3537
3577
key_t
You can’t perform that action at this time.
0 commit comments