Home
last modified time | relevance | path

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

/hostap-latest/src/common/
Dsae.c2058 const u8 *epos; in sae_parse_password_identifier() local
2075 epos = *pos; in sae_parse_password_identifier()
2076 epos++; /* skip IE type */ in sae_parse_password_identifier()
2077 len = *epos++; /* IE length */ in sae_parse_password_identifier()
2078 if (len > end - epos || len < 1) in sae_parse_password_identifier()
2080 epos++; /* skip ext ID */ in sae_parse_password_identifier()
2085 os_memcmp(sae->tmp->pw_id, epos, len) != 0)) { in sae_parse_password_identifier()
2096 os_memcpy(sae->tmp->pw_id, epos, len); in sae_parse_password_identifier()
2100 *pos = epos + len; in sae_parse_password_identifier()
2108 const u8 *epos; in sae_parse_rejected_groups() local
[all …]
/hostap-latest/src/ap/
Dbeacon.c777 u8 *epos; in hostapd_probe_resp_fill_elems() local
779 epos = pos + len; in hostapd_probe_resp_fill_elems()
795 pos = hostapd_eid_country(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
819 pos = hostapd_get_rsne(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
820 pos = hostapd_eid_bss_load(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
821 pos = hostapd_eid_mbssid(hapd, pos, epos, WLAN_FC_STYPE_PROBE_RESP, 0, in hostapd_probe_resp_fill_elems()
824 pos = hostapd_eid_rm_enabled_capab(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
825 pos = hostapd_get_mde(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
886 pos = hostapd_get_rsnxe(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
930 pos = hostapd_get_wpa_ie(hapd, pos, epos - pos); in hostapd_probe_resp_fill_elems()
[all …]
/hostap-latest/src/eap_peer/
Deap_peap.c673 const u8 *epos; in eap_peap_phase2_request() local
676 epos = eap_hdr_validate(EAP_VENDOR_MICROSOFT, 0x21, in eap_peap_phase2_request()
678 if (epos) { in eap_peap_phase2_request()
683 epos, eleft); in eap_peap_phase2_request()
/hostap-latest/hostapd/
Dconfig_file.c2265 const char *epos; in parse_sae_password() local
2271 epos = os_strchr(pos2, '|'); in parse_sae_password()
2272 if (epos) { in parse_sae_password()
2273 tmp = os_malloc(epos - pos2 + 1); in parse_sae_password()
2276 os_memcpy(tmp, pos2, epos - pos2); in parse_sae_password()
2277 tmp[epos - pos2] = '\0'; in parse_sae_password()