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 308 struct ft_remote_r0kh *r0kh; local
311 r0kh = sm->wpa_auth->conf.r0kh_list;
312 while (r0kh) {
313 if (r0kh->id_len == sm->r0kh_id_len &&
314 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
317 r0kh = r0kh->next;
319 if (r0kh == NULL) {
320 wpa_hexdump(MSG_DEBUG, "FT: Did not find R0KH-ID",
325 wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote R0KH "
371 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
1452 struct ft_remote_r0kh *r0kh; local
1521 struct ft_remote_r0kh *r0kh; local
    [all...]
ap_config.c 482 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
485 r0kh = conf->r0kh_list;
487 while (r0kh) {
488 r0kh_prev = r0kh;
489 r0kh = r0kh->next;
  /external/wpa_supplicant_8/hostapd/
config_file.c 985 struct ft_remote_r0kh *r0kh; local
988 r0kh = os_zalloc(sizeof(*r0kh));
989 if (r0kh == NULL)
997 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
998 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
999 os_free(r0kh);
1008 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
1009 os_free(r0kh);
1012 r0kh->id_len = next - pos - 1
    [all...]

Completed in 120 milliseconds