Searched refs:dot11txpn (Results 1 – 5 of 5) sorted by relevance
| /linux/drivers/staging/rtl8723bs/include/ |
| H A D | rtw_xmit.h | 41 #define WEP_IV(pattrib_iv, dot11txpn, keyidx)\ argument 43 pattrib_iv[0] = dot11txpn._byte_.TSC0;\ 44 pattrib_iv[1] = dot11txpn._byte_.TSC1;\ 45 pattrib_iv[2] = dot11txpn._byte_.TSC2;\ 47 dot11txpn.val = (dot11txpn.val == 0xffffff) ? 0 : (dot11txpn.val + 1);\ 51 #define TKIP_IV(pattrib_iv, dot11txpn, keyidx)\ argument 53 pattrib_iv[0] = dot11txpn._byte_.TSC1;\ 54 pattrib_iv[1] = (dot11txpn._byte_.TSC1 | 0x20) & 0x7f;\ 55 pattrib_iv[2] = dot11txpn._byte_.TSC0;\ 57 pattrib_iv[4] = dot11txpn._byte_.TSC2;\ [all …]
|
| H A D | rtw_security.h | 219 #define GET_TKIP_PN(iv, dot11txpn)\ argument 221 dot11txpn._byte_.TSC0 = iv[2];\ 222 dot11txpn._byte_.TSC1 = iv[0];\ 223 dot11txpn._byte_.TSC2 = iv[4];\ 224 dot11txpn._byte_.TSC3 = iv[5];\ 225 dot11txpn._byte_.TSC4 = iv[6];\ 226 dot11txpn._byte_.TSC5 = iv[7];\
|
| H A D | sta_info.h | 94 union pn48 dot11txpn; /* PN48 used for Unicast xmit */ member
|
| /linux/drivers/staging/rtl8723bs/core/ |
| H A D | rtw_xmit.c | 522 WEP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); in update_attrib_sec_info() 535 TKIP_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); in update_attrib_sec_info() 537 TKIP_IV(pattrib->iv, psta->dot11txpn, 0); in update_attrib_sec_info() 549 AES_IV(pattrib->iv, psta->dot11txpn, pattrib->key_idx); in update_attrib_sec_info() 551 AES_IV(pattrib->iv, psta->dot11txpn, 0); in update_attrib_sec_info()
|
| H A D | rtw_mlme.c | 1003 memset((u8 *)&psta->dot11txpn, 0, sizeof(union pn48)); in rtw_joinbss_update_stainfo() 1004 psta->dot11txpn.val = psta->dot11txpn.val + 1; in rtw_joinbss_update_stainfo()
|