Searched refs:rfc1042_header (Results 1 – 2 of 2) sorted by relevance
/external/wpa_supplicant_8/src/drivers/ |
D | driver_hostap.c | 35 static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 }; variable 87 if (left < sizeof(rfc1042_header)) { in handle_data() 92 if (memcmp(pos, rfc1042_header, sizeof(rfc1042_header)) != 0) { in handle_data() 96 pos += sizeof(rfc1042_header); in handle_data() 97 left -= sizeof(rfc1042_header); in handle_data() 292 len = sizeof(*hdr) + sizeof(rfc1042_header) + 2 + data_len; in hostap_send_eapol() 310 memcpy(pos, rfc1042_header, sizeof(rfc1042_header)); in hostap_send_eapol() 311 pos += sizeof(rfc1042_header); in hostap_send_eapol()
|
D | driver_nl80211.c | 5767 static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 }; variable 5791 len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 + in wpa_driver_nl80211_hapd_send_eapol() 5822 memcpy(pos, rfc1042_header, sizeof(rfc1042_header)); in wpa_driver_nl80211_hapd_send_eapol() 5823 pos += sizeof(rfc1042_header); in wpa_driver_nl80211_hapd_send_eapol()
|