Home
last modified time | relevance | path

Searched refs:r1kh (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/wpa/src/ap/
H A Dwpa_auth_ft.c1577 r1kh->seq = os_zalloc(sizeof(*r1kh->seq)); in wpa_ft_rrb_init_r1kh_seq()
1603 for (; r1kh; r1kh = r1kh->next) { in wpa_ft_rrb_lookup_r1kh()
1736 for (r1kh = *wpa_auth->conf.r1kh_list; r1kh; r1kh = r1kh->next) { in wpa_ft_rrb_del_r1kh()
1741 if (!r1kh) in wpa_ft_rrb_del_r1kh()
1773 r1kh = os_zalloc(sizeof(*r1kh)); in wpa_ft_rrb_add_r1kh()
1774 if (!r1kh) in wpa_ft_rrb_add_r1kh()
1777 os_memcpy(r1kh->addr, src_addr, sizeof(r1kh->addr)); in wpa_ft_rrb_add_r1kh()
1778 os_memcpy(r1kh->id, r1kh_id, sizeof(r1kh->id)); in wpa_ft_rrb_add_r1kh()
1823 for (; r1kh; r1kh = r1kh->next) { in wpa_ft_deinit_seq()
3852 if (r1kh) in wpa_ft_rrb_rx_pull()
[all …]
H A Dap_config.c821 struct ft_remote_r1kh *r1kh, *r1kh_prev; in hostapd_config_free_bss() local
831 r1kh = conf->r1kh_list; in hostapd_config_free_bss()
833 while (r1kh) { in hostapd_config_free_bss()
834 r1kh_prev = r1kh; in hostapd_config_free_bss()
835 r1kh = r1kh->next; in hostapd_config_free_bss()
/freebsd/contrib/wpa/hostapd/
H A Dconfig_file.c1020 struct ft_remote_r1kh *r1kh; in add_r1kh() local
1023 r1kh = os_zalloc(sizeof(*r1kh)); in add_r1kh()
1024 if (r1kh == NULL) in add_r1kh()
1033 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) { in add_r1kh()
1035 os_free(r1kh); in add_r1kh()
1043 if (next == NULL || hwaddr_aton(pos, r1kh->id)) { in add_r1kh()
1045 os_free(r1kh); in add_r1kh()
1050 if (rkh_derive_key(pos, r1kh->key, sizeof(r1kh->key)) < 0) { in add_r1kh()
1052 os_free(r1kh); in add_r1kh()
1056 r1kh->next = bss->r1kh_list; in add_r1kh()
[all …]