| /src/external/bsd/wpa/dist/src/ap/ |
| wpa_auth_ft.c | 1559 static int wpa_ft_rrb_init_r0kh_seq(struct ft_remote_r0kh *r0kh) 1561 if (r0kh->seq) 1564 r0kh->seq = os_zalloc(sizeof(*r0kh->seq)); 1565 if (!r0kh->seq) { 1566 wpa_printf(MSG_DEBUG, "FT: Failed to allocate r0kh->seq"); 1570 dl_list_init(&r0kh->seq->rx.queue); 1581 struct ft_remote_r0kh *r0kh; local 1587 r0kh = *wpa_auth->conf.r0kh_list; 1589 r0kh = NULL 1680 struct ft_remote_r0kh *r0kh, *prev = NULL; local 1729 struct ft_remote_r0kh *r0kh; local 1836 struct ft_remote_r0kh *r0kh; local 1869 struct ft_remote_r0kh *r0kh, *r0kh_next, *r0kh_prev = NULL; local 1922 struct ft_remote_r0kh *r0kh, *r0kh_wildcard; local 1968 struct ft_remote_r0kh *r0kh, *r0kh_wildcard; local 2122 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local 2985 const u8 *r0kh = sm->r0kh_id; local 4155 struct ft_remote_r0kh *r0kh, *r0kh_wildcard; local 4456 struct ft_remote_r0kh *r0kh = NULL; local 4640 struct ft_remote_r0kh *r0kh = NULL, *r0kh_wildcard = NULL; local [all...] |
| ap_config.c | 715 struct ft_remote_r0kh *r0kh, *r0kh_prev; local 718 r0kh = conf->r0kh_list; 720 while (r0kh) { 721 r0kh_prev = r0kh; 722 r0kh = r0kh->next;
|
| /src/external/bsd/wpa/dist/hostapd/ |
| config_file.c | 936 struct ft_remote_r0kh *r0kh; local 939 r0kh = os_zalloc(sizeof(*r0kh)); 940 if (r0kh == NULL) 948 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) { 949 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos); 950 os_free(r0kh); 959 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos); 960 os_free(r0kh); 963 r0kh->id_len = next - pos - 1 [all...] |
| ctrl_iface.c | 1484 struct ft_remote_r0kh *r0kh; local 1491 for (r0kh = conf->r0kh_list; r0kh; r0kh=r0kh->next) { 1493 ret = os_snprintf(pos, end - pos, "r0kh=" MACSTR " ", 1494 MAC2STR(r0kh->addr)); 1498 if (r0kh->id_len + 1 >= (size_t) (end - pos)) 1500 os_memcpy(pos, r0kh->id, r0kh->id_len) [all...] |