Home
last modified time | relevance | path

Searched refs:hdr11 (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/net/wireless/
Dlib80211_crypt_tkip.c546 struct ieee80211_hdr *hdr11; in michael_mic_hdr() local
548 hdr11 = (struct ieee80211_hdr *)skb->data; in michael_mic_hdr()
550 switch (le16_to_cpu(hdr11->frame_control) & in michael_mic_hdr()
553 memcpy(hdr, hdr11->addr3, ETH_ALEN); /* DA */ in michael_mic_hdr()
554 memcpy(hdr + ETH_ALEN, hdr11->addr2, ETH_ALEN); /* SA */ in michael_mic_hdr()
557 memcpy(hdr, hdr11->addr1, ETH_ALEN); /* DA */ in michael_mic_hdr()
558 memcpy(hdr + ETH_ALEN, hdr11->addr3, ETH_ALEN); /* SA */ in michael_mic_hdr()
561 memcpy(hdr, hdr11->addr3, ETH_ALEN); /* DA */ in michael_mic_hdr()
562 memcpy(hdr + ETH_ALEN, hdr11->addr4, ETH_ALEN); /* SA */ in michael_mic_hdr()
565 memcpy(hdr, hdr11->addr1, ETH_ALEN); /* DA */ in michael_mic_hdr()
[all …]
/Linux-v4.19/drivers/staging/rtl8192u/ieee80211/
Dieee80211_crypt_tkip.c531 struct rtl_80211_hdr_4addr *hdr11; in michael_mic_hdr() local
533 hdr11 = (struct rtl_80211_hdr_4addr *) skb->data; in michael_mic_hdr()
534 switch (le16_to_cpu(hdr11->frame_ctl) & in michael_mic_hdr()
537 memcpy(hdr, hdr11->addr3, ETH_ALEN); /* DA */ in michael_mic_hdr()
538 memcpy(hdr + ETH_ALEN, hdr11->addr2, ETH_ALEN); /* SA */ in michael_mic_hdr()
541 memcpy(hdr, hdr11->addr1, ETH_ALEN); /* DA */ in michael_mic_hdr()
542 memcpy(hdr + ETH_ALEN, hdr11->addr3, ETH_ALEN); /* SA */ in michael_mic_hdr()
545 memcpy(hdr, hdr11->addr3, ETH_ALEN); /* DA */ in michael_mic_hdr()
546 memcpy(hdr + ETH_ALEN, hdr11->addr4, ETH_ALEN); /* SA */ in michael_mic_hdr()
549 memcpy(hdr, hdr11->addr1, ETH_ALEN); /* DA */ in michael_mic_hdr()
[all …]
/Linux-v4.19/drivers/staging/rtl8192e/
Drtllib_crypt_tkip.c535 struct rtllib_hdr_4addr *hdr11; in michael_mic_hdr() local
537 hdr11 = (struct rtllib_hdr_4addr *) skb->data; in michael_mic_hdr()
538 switch (le16_to_cpu(hdr11->frame_ctl) & in michael_mic_hdr()
541 ether_addr_copy(hdr, hdr11->addr3); /* DA */ in michael_mic_hdr()
542 ether_addr_copy(hdr + ETH_ALEN, hdr11->addr2); /* SA */ in michael_mic_hdr()
545 ether_addr_copy(hdr, hdr11->addr1); /* DA */ in michael_mic_hdr()
546 ether_addr_copy(hdr + ETH_ALEN, hdr11->addr3); /* SA */ in michael_mic_hdr()
549 ether_addr_copy(hdr, hdr11->addr3); /* DA */ in michael_mic_hdr()
550 ether_addr_copy(hdr + ETH_ALEN, hdr11->addr4); /* SA */ in michael_mic_hdr()
553 ether_addr_copy(hdr, hdr11->addr1); /* DA */ in michael_mic_hdr()
[all …]
/Linux-v4.19/drivers/net/wireless/
Dmac80211_hwsim.c908 struct ieee80211_hdr *hdr11; in mac80211_hwsim_monitor_ack() local
929 hdr11 = skb_put(skb, 10); in mac80211_hwsim_monitor_ack()
930 hdr11->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL | in mac80211_hwsim_monitor_ack()
932 hdr11->duration_id = cpu_to_le16(0); in mac80211_hwsim_monitor_ack()
933 memcpy(hdr11->addr1, addr, ETH_ALEN); in mac80211_hwsim_monitor_ack()