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
507
struct ft_remote_r0kh *
r0kh
, *r0kh_prev;
local
510
r0kh
= conf->r0kh_list;
512
while (
r0kh
) {
513
r0kh_prev =
r0kh
;
514
r0kh
=
r0kh
->next;
wpa_auth_ft.c
319
struct ft_remote_r0kh *
r0kh
;
local
322
r0kh
= sm->wpa_auth->conf.r0kh_list;
323
while (
r0kh
) {
324
if (
r0kh
->id_len == sm->r0kh_id_len &&
325
os_memcmp_const(
r0kh
->id, sm->r0kh_id, sm->r0kh_id_len) ==
328
r0kh
=
r0kh
->next;
330
if (
r0kh
== NULL) {
331
wpa_hexdump(MSG_DEBUG, "FT: Did not find
R0KH
-ID",
336
wpa_printf(MSG_DEBUG, "FT: Send PMK-R1 pull request to remote
R0KH
"
382
const u8 *
r0kh
= sm->wpa_auth->conf.r0_key_holder;
local
834
const u8 *
r0kh
= sm->
r0kh
_id;
local
1570
struct ft_remote_
r0kh
*
r0kh
;
local
1639
struct ft_remote_
r0kh
*
r0kh
;
local
[
all
...]
/external/wpa_supplicant_8/hostapd/
config_file.c
1004
struct ft_remote_r0kh *
r0kh
;
local
1007
r0kh
= os_zalloc(sizeof(*
r0kh
));
1008
if (
r0kh
== NULL)
1016
if (next == NULL || hwaddr_aton(pos,
r0kh
->addr)) {
1017
wpa_printf(MSG_ERROR, "Invalid
R0KH
MAC address: '%s'", pos);
1018
os_free(
r0kh
);
1027
wpa_printf(MSG_ERROR, "Invalid
R0KH
-ID: '%s'", pos);
1028
os_free(
r0kh
);
1031
r0kh
->id_len = next - pos - 1
[
all
...]
Completed in 3150 milliseconds