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 316 struct ft_remote_r0kh *r0kh; local
319 r0kh = wpa_auth->conf.r0kh_list;
320 while (r0kh) {
321 if (r0kh->id_len == r0kh_id_len &&
322 os_memcmp(r0kh->id, r0kh_id, r0kh_id_len) == 0)
324 r0kh = r0kh->next;
326 if (r0kh == NULL)
329 wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote R0KH "
330 "address " MACSTR, MAC2STR(r0kh->addr))
366 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
1459 struct ft_remote_r0kh *r0kh; local
1525 struct ft_remote_r0kh *r0kh; local
    [all...]
ap_config.c 431 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
434 r0kh = conf->r0kh_list;
436 while (r0kh) {
437 r0kh_prev = r0kh;
438 r0kh = r0kh->next;
  /external/wpa_supplicant_8/hostapd/
config_file.c 895 struct ft_remote_r0kh *r0kh; local
898 r0kh = os_zalloc(sizeof(*r0kh));
899 if (r0kh == NULL)
907 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
908 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
909 os_free(r0kh);
918 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
919 os_free(r0kh);
922 r0kh->id_len = next - pos - 1
    [all...]

Completed in 216 milliseconds