Symbol: IEEE80211_WEP_IVLEN
sys/dev/ic/acx100.c
728
#define IEEEWEP_IVLEN (IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)
sys/dev/ic/ath.c
1918
m_adj(m, IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN);
sys/dev/ic/ath.c
2000
IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN];
sys/dev/ic/ath.c
2076
len = IEEE80211_WEP_IVLEN +
sys/dev/ic/if_wi.c
2234
key + IEEE80211_WEP_IVLEN, klen);
sys/dev/ic/if_wi.c
2269
if (len < IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/dev/ic/if_wi.c
2272
len -= (IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/dev/ic/if_wi.c
2286
key + IEEE80211_WEP_IVLEN, klen);
sys/dev/ic/if_wi.c
2408
tx_frame.wi_dat_len += IEEE80211_WEP_IVLEN +
sys/dev/ic/if_wi.c
782
len -= IEEE80211_WEP_IVLEN +
sys/dev/ic/if_wi.c
794
IEEE80211_WEP_IVLEN +
sys/dev/ic/if_wi.c
798
IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
sys/dev/usb/if_uath.c
1229
memmove((caddr_t)wh + IEEE80211_WEP_IVLEN +
sys/dev/usb/if_uath.c
1231
m_adj(m, IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN);
sys/dev/usb/if_uath.c
1399
paylen += IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN;
sys/dev/usb/if_uath.c
1400
xferlen += IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN;
sys/net80211/ieee80211.h
1016
#define IEEE80211_WEP_TOTLEN (IEEE80211_WEP_IVLEN + \
sys/net80211/ieee80211.h
1042
(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN + IEEE80211_WEP_CRCLEN))
sys/net80211/ieee80211_crypto_wep.c
125
memcpy(wepseed, ivp, IEEE80211_WEP_IVLEN);
sys/net80211/ieee80211_crypto_wep.c
126
memcpy(wepseed + IEEE80211_WEP_IVLEN, k->k_key, k->k_len);
sys/net80211/ieee80211_crypto_wep.c
127
rc4_keysetup(&ctx->rc4, wepseed, IEEE80211_WEP_IVLEN + k->k_len);
sys/net80211/ieee80211_crypto_wep.c
221
memcpy(wepseed, ivp, IEEE80211_WEP_IVLEN);
sys/net80211/ieee80211_crypto_wep.c
222
memcpy(wepseed + IEEE80211_WEP_IVLEN, k->k_key, k->k_len);
sys/net80211/ieee80211_crypto_wep.c
223
rc4_keysetup(&ctx->rc4, wepseed, IEEE80211_WEP_IVLEN + k->k_len);
sys/net80211/ieee80211_crypto_wep.c
78
(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)