| /src/external/bsd/wpa/dist/src/ap/ |
| wpa_auth_ft.c | 1606 static int wpa_ft_rrb_init_r1kh_seq(struct ft_remote_r1kh *r1kh) 1608 if (r1kh->seq) 1611 r1kh->seq = os_zalloc(sizeof(*r1kh->seq)); 1612 if (!r1kh->seq) { 1613 wpa_printf(MSG_DEBUG, "FT: Failed to allocate r1kh->seq"); 1617 dl_list_init(&r1kh->seq->rx.queue); 1628 struct ft_remote_r1kh *r1kh; local 1634 r1kh = *wpa_auth->conf.r1kh_list; 1636 r1kh = NULL 1765 struct ft_remote_r1kh *r1kh, *prev = NULL; local 1802 struct ft_remote_r1kh *r1kh; local 1837 struct ft_remote_r1kh *r1kh; local 1870 struct ft_remote_r1kh *r1kh, *r1kh_next, *r1kh_prev = NULL; local 2124 const u8 *r1kh = sm->wpa_auth->conf.r1_key_holder; local 2987 const u8 *r1kh = wpa_auth->conf.r1_key_holder; local 3994 struct ft_remote_r1kh *r1kh, *r1kh_wildcard; local 4457 struct ft_remote_r1kh *r1kh = NULL; local 4641 struct ft_remote_r1kh *r1kh = NULL, *r1kh_wildcard = NULL; local 4965 struct ft_remote_r1kh *r1kh; local [all...] |
| ap_config.c | 716 struct ft_remote_r1kh *r1kh, *r1kh_prev; local 726 r1kh = conf->r1kh_list; 728 while (r1kh) { 729 r1kh_prev = r1kh; 730 r1kh = r1kh->next;
|
| /src/external/bsd/wpa/dist/hostapd/ |
| config_file.c | 982 struct ft_remote_r1kh *r1kh; local 985 r1kh = os_zalloc(sizeof(*r1kh)); 986 if (r1kh == NULL) 995 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) { 996 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos); 997 os_free(r1kh); 1005 if (next == NULL || hwaddr_aton(pos, r1kh->id)) { 1006 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos); 1007 os_free(r1kh); [all...] |
| ctrl_iface.c | 1485 struct ft_remote_r1kh *r1kh; local 1511 for (r1kh = conf->r1kh_list; r1kh; r1kh=r1kh->next) { 1513 ret = os_snprintf(pos, end - pos, "r1kh=" MACSTR " " MACSTR " ", 1514 MAC2STR(r1kh->addr), MAC2STR(r1kh->id)); 1518 pos += wpa_snprintf_hex(pos, end - pos, r1kh->key, 1519 sizeof(r1kh->key)) [all...] |