OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:r0kh
(Results
1 - 3
of
3
) sorted by null
/external/wpa_supplicant_8/src/ap/
ap_config.c
456
struct ft_remote_r0kh *
r0kh
, *r0kh_prev;
local
459
r0kh
= conf->r0kh_list;
461
while (
r0kh
) {
462
r0kh_prev =
r0kh
;
463
r0kh
=
r0kh
->next;
wpa_auth_ft.c
300
struct ft_remote_r0kh *
r0kh
;
local
303
r0kh
= wpa_auth->conf.r0kh_list;
304
while (
r0kh
) {
305
if (
r0kh
->id_len == r0kh_id_len &&
306
os_memcmp(
r0kh
->id, r0kh_id, r0kh_id_len) == 0)
308
r0kh
=
r0kh
->next;
310
if (
r0kh
== NULL)
313
wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote
R0KH
"
314
"address " MACSTR, MAC2STR(
r0kh
->addr))
350
const u8 *
r0kh
= sm->wpa_auth->conf.r0_key_holder;
local
1334
struct ft_remote_
r0kh
*
r0kh
;
local
1400
struct ft_remote_
r0kh
*
r0kh
;
local
[
all
...]
/external/wpa_supplicant_8/hostapd/
config_file.c
913
struct ft_remote_r0kh *
r0kh
;
local
916
r0kh
= os_zalloc(sizeof(*
r0kh
));
917
if (
r0kh
== NULL)
925
if (next == NULL || hwaddr_aton(pos,
r0kh
->addr)) {
926
wpa_printf(MSG_ERROR, "Invalid
R0KH
MAC address: '%s'", pos);
927
os_free(
r0kh
);
936
wpa_printf(MSG_ERROR, "Invalid
R0KH
-ID: '%s'", pos);
937
os_free(
r0kh
);
940
r0kh
->id_len = next - pos - 1
[
all
...]
Completed in 23 milliseconds