Symbol: IEEE80211_WEP_IVLEN
sys/dev/ath/ath_hal/ah_internal.h
508
(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN + IEEE80211_WEP_CRCLEN))
sys/dev/ath/if_ath_tdma.c
237
+ IEEE80211_WEP_IVLEN \
sys/net80211/ieee80211.h
2048
#define IEEE80211_WEP_TOTLEN (IEEE80211_WEP_IVLEN + \
sys/net80211/ieee80211.h
2077
(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN + IEEE80211_WEP_CRCLEN))
sys/net80211/ieee80211_crypto.c
773
#define IEEE80211_WEP_HDRLEN (IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)
sys/net80211/ieee80211_crypto.c
821
m_copydata(m, hdrlen + IEEE80211_WEP_IVLEN, sizeof(keyid), &keyid);
sys/net80211/ieee80211_crypto_ccmp.c
329
if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
sys/net80211/ieee80211_crypto_ccmp.c
78
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/net80211/ieee80211_crypto_ccmp.c
95
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/net80211/ieee80211_crypto_gcmp.c
102
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/net80211/ieee80211_crypto_gcmp.c
309
if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
sys/net80211/ieee80211_crypto_gcmp.c
85
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/net80211/ieee80211_crypto_none.c
134
"key id %u is not set (decap)", ivp[IEEE80211_WEP_IVLEN] >> 6);
sys/net80211/ieee80211_crypto_tkip.c
309
if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
sys/net80211/ieee80211_crypto_tkip.c
66
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/net80211/ieee80211_crypto_wep.c
351
uint8_t rc4key[IEEE80211_WEP_IVLEN + IEEE80211_KEYBUF_128_SIZE];
sys/net80211/ieee80211_crypto_wep.c
362
memcpy(rc4key, mtod(m, uint8_t *) + hdrlen, IEEE80211_WEP_IVLEN);
sys/net80211/ieee80211_crypto_wep.c
363
memcpy(rc4key + IEEE80211_WEP_IVLEN, key->wk_key, key->wk_keylen);
sys/net80211/ieee80211_crypto_wep.c
369
keylen = key->wk_keylen + IEEE80211_WEP_IVLEN;
sys/net80211/ieee80211_crypto_wep.c
434
uint8_t rc4key[IEEE80211_WEP_IVLEN + IEEE80211_KEYBUF_128_SIZE];
sys/net80211/ieee80211_crypto_wep.c
445
memcpy(rc4key, mtod(m, uint8_t *) + hdrlen, IEEE80211_WEP_IVLEN);
sys/net80211/ieee80211_crypto_wep.c
446
memcpy(rc4key + IEEE80211_WEP_IVLEN, key->wk_key, key->wk_keylen);
sys/net80211/ieee80211_crypto_wep.c
452
keylen = key->wk_keylen + IEEE80211_WEP_IVLEN;
sys/net80211/ieee80211_crypto_wep.c
62
.ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN,
sys/net80211/ieee80211_mesh.c
3285
+ IEEE80211_WEP_IVLEN \
sys/net80211/ieee80211_proto.c
272
+ IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN
sys/net80211/ieee80211_proto.c
331
+ IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN
sys/net80211/ieee80211_proto.c
606
if (buf[off+IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV)
sys/net80211/ieee80211_proto.c
609
net80211_printf(" KID %u]", buf[off+IEEE80211_WEP_IVLEN] >> 6);