HomeSort by relevance Sort by last modified time
    Searched defs:r0kh (Results 1 - 3 of 3) sorted by null

  /external/wpa_supplicant_8/src/ap/
ap_config.c 427 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
430 r0kh = conf->r0kh_list;
432 while (r0kh) {
433 r0kh_prev = r0kh;
434 r0kh = r0kh->next;
wpa_auth_ft.c 287 struct ft_remote_r0kh *r0kh; local
290 r0kh = wpa_auth->conf.r0kh_list;
291 while (r0kh) {
292 if (r0kh->id_len == r0kh_id_len &&
293 os_memcmp(r0kh->id, r0kh_id, r0kh_id_len) == 0)
295 r0kh = r0kh->next;
297 if (r0kh == NULL)
300 wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote R0KH "
301 "address " MACSTR, MAC2STR(r0kh->addr))
337 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
1293 struct ft_remote_r0kh *r0kh; local
1359 struct ft_remote_r0kh *r0kh; local
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c 889 struct ft_remote_r0kh *r0kh; local
892 r0kh = os_zalloc(sizeof(*r0kh));
893 if (r0kh == NULL)
901 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
902 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
903 os_free(r0kh);
912 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
913 os_free(r0kh);
916 r0kh->id_len = next - pos - 1
    [all...]

Completed in 67 milliseconds