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
460
struct ft_remote_r0kh *
r0kh
, *r0kh_prev;
local
463
r0kh
= conf->r0kh_list;
465
while (
r0kh
) {
466
r0kh_prev =
r0kh
;
467
r0kh
=
r0kh
->next;
wpa_auth_ft.c
307
struct ft_remote_r0kh *
r0kh
;
local
310
r0kh
= sm->wpa_auth->conf.r0kh_list;
311
while (
r0kh
) {
312
if (
r0kh
->id_len == sm->r0kh_id_len &&
313
os_memcmp_const(
r0kh
->id, sm->r0kh_id, sm->r0kh_id_len) ==
316
r0kh
=
r0kh
->next;
318
if (
r0kh
== NULL) {
319
wpa_hexdump(MSG_DEBUG, "FT: Did not find
R0KH
-ID",
324
wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote
R0KH
"
369
const u8 *
r0kh
= sm->wpa_auth->conf.r0_key_holder;
local
1443
struct ft_remote_
r0kh
*
r0kh
;
local
1507
struct ft_remote_
r0kh
*
r0kh
;
local
[
all
...]
/external/wpa_supplicant_8/hostapd/
config_file.c
934
struct ft_remote_r0kh *
r0kh
;
local
937
r0kh
= os_zalloc(sizeof(*
r0kh
));
938
if (
r0kh
== NULL)
946
if (next == NULL || hwaddr_aton(pos,
r0kh
->addr)) {
947
wpa_printf(MSG_ERROR, "Invalid
R0KH
MAC address: '%s'", pos);
948
os_free(
r0kh
);
957
wpa_printf(MSG_ERROR, "Invalid
R0KH
-ID: '%s'", pos);
958
os_free(
r0kh
);
961
r0kh
->id_len = next - pos - 1
[
all
...]
Completed in 139 milliseconds