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

  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 300 struct ft_remote_r0kh *r0kh; local
303 r0kh = wpa_auth->conf.r0kh_list;
304 while (r0kh) {
305 if (r0kh->id_len == r0kh_id_len &&
306 os_memcmp(r0kh->id, r0kh_id, r0kh_id_len) == 0)
308 r0kh = r0kh->next;
310 if (r0kh == NULL)
313 wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote R0KH "
314 "address " MACSTR, MAC2STR(r0kh->addr))
351 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
1342 struct ft_remote_r0kh *r0kh; local
1408 struct ft_remote_r0kh *r0kh; local
    [all...]
ap_config.c 462 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
465 r0kh = conf->r0kh_list;
467 while (r0kh) {
468 r0kh_prev = r0kh;
469 r0kh = r0kh->next;
  /external/wpa_supplicant_8/hostapd/
config_file.c 884 struct ft_remote_r0kh *r0kh; local
887 r0kh = os_zalloc(sizeof(*r0kh));
888 if (r0kh == NULL)
896 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
897 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
898 os_free(r0kh);
907 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
908 os_free(r0kh);
911 r0kh->id_len = next - pos - 1
    [all...]

Completed in 74 milliseconds