HomeSort by relevance Sort by last modified time
    Searched refs:wpa_auth (Results 1 - 21 of 21) sorted by null

  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 23 #include "wpa_auth.h"
37 static void wpa_group_sm_step(struct wpa_authenticator *wpa_auth,
40 static int wpa_gtk_update(struct wpa_authenticator *wpa_auth,
42 static int wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth,
58 struct wpa_authenticator *wpa_auth, const u8 *addr)
60 if (wpa_auth->cb.mic_failure_report)
61 return wpa_auth->cb.mic_failure_report(wpa_auth->cb.ctx, addr);
66 static inline void wpa_auth_set_eapol(struct wpa_authenticator *wpa_auth,
70 if (wpa_auth->cb.set_eapol
216 struct wpa_authenticator *wpa_auth = eloop_ctx; local
236 struct wpa_authenticator *wpa_auth = eloop_ctx; local
257 struct wpa_authenticator *wpa_auth = eloop_ctx; local
277 struct wpa_authenticator *wpa_auth = ctx; local
372 struct wpa_authenticator *wpa_auth; local
1199 struct wpa_authenticator *wpa_auth = eloop_ctx; local
2100 struct wpa_authenticator *wpa_auth = sm->wpa_auth; local
    [all...]
peerkey_auth.c 16 #include "wpa_auth.h"
25 struct wpa_authenticator *wpa_auth = eloop_ctx;
50 static void wpa_smk_send_error(struct wpa_authenticator *wpa_auth,
59 wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG,
74 __wpa_send_eapol(wpa_auth, sm,
81 void wpa_smk_m1(struct wpa_authenticator *wpa_auth,
106 if (wpa_auth_for_each_sta(wpa_auth, wpa_stsl_select_sta, &search) ==
111 wpa_smk_send_error(wpa_auth, sm, kde.mac_addr, STK_MUI_SMK,
113 /* FIX: wpa_stsl_remove(wpa_auth, neg); */
133 wpa_auth_logger(wpa_auth, search.sm->addr, LOGGER_DEBUG
    [all...]
wpa_auth_ie.c 16 #include "wpa_auth.h"
298 int wpa_auth_gen_wpa_ie(struct wpa_authenticator *wpa_auth)
305 if (wpa_auth->conf.wpa & WPA_PROTO_RSN) {
306 res = wpa_write_rsn_ie(&wpa_auth->conf,
313 if (wpa_key_mgmt_ft(wpa_auth->conf.wpa_key_mgmt)) {
314 res = wpa_write_mdie(&wpa_auth->conf, pos,
321 if (wpa_auth->conf.wpa & WPA_PROTO_WPA) {
322 res = wpa_write_wpa_ie(&wpa_auth->conf,
329 os_free(wpa_auth->wpa_ie);
330 wpa_auth->wpa_ie = os_malloc(pos - buf)
    [all...]
wpa_auth_ft.c 19 #include "wpa_auth.h"
25 static int wpa_ft_rrb_send(struct wpa_authenticator *wpa_auth, const u8 *dst,
28 if (wpa_auth->cb.send_ether == NULL)
31 return wpa_auth->cb.send_ether(wpa_auth->cb.ctx, dst, ETH_P_RRB,
36 static int wpa_ft_action_send(struct wpa_authenticator *wpa_auth,
39 if (wpa_auth->cb.send_ft_action == NULL)
41 return wpa_auth->cb.send_ft_action(wpa_auth->cb.ctx, dst,
47 wpa_ft_add_sta(struct wpa_authenticator *wpa_auth, const u8 *sta_addr
    [all...]
wpa_auth.h 209 int wpa_init_keys(struct wpa_authenticator *wpa_auth);
210 void wpa_deinit(struct wpa_authenticator *wpa_auth);
211 int wpa_reconfig(struct wpa_authenticator *wpa_auth,
221 int wpa_validate_wpa_ie(struct wpa_authenticator *wpa_auth,
227 wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr);
228 int wpa_auth_sta_associated(struct wpa_authenticator *wpa_auth,
232 void wpa_receive(struct wpa_authenticator *wpa_auth,
236 WPA_AUTH, WPA_ASSOC, WPA_DISASSOC, WPA_DEAUTH, WPA_REAUTH,
242 void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth);
243 int wpa_get_mib(struct wpa_authenticator *wpa_auth, char *buf, size_t buflen)
    [all...]
wpa_auth_i.h 25 struct wpa_authenticator *wpa_auth; member in struct:wpa_state_machine
191 void wpa_auth_logger(struct wpa_authenticator *wpa_auth, const u8 *addr,
193 void wpa_auth_vlogger(struct wpa_authenticator *wpa_auth, const u8 *addr,
195 void __wpa_send_eapol(struct wpa_authenticator *wpa_auth,
200 int wpa_auth_for_each_sta(struct wpa_authenticator *wpa_auth,
203 int wpa_auth_for_each_auth(struct wpa_authenticator *wpa_auth,
208 int wpa_stsl_remove(struct wpa_authenticator *wpa_auth,
210 void wpa_smk_error(struct wpa_authenticator *wpa_auth,
212 void wpa_smk_m1(struct wpa_authenticator *wpa_auth,
214 void wpa_smk_m3(struct wpa_authenticator *wpa_auth,
    [all...]
tkip_countermeasures.c 18 #include "wpa_auth.h"
41 wpa_auth_countermeasures_start(hapd->wpa_auth);
44 wpa_gtk_rekey(hapd->wpa_auth);
wpa_auth_ie.h 48 int wpa_auth_gen_wpa_ie(struct wpa_authenticator *wpa_auth);
wpa_auth_glue.c 26 #include "wpa_auth.h"
311 if (iface->bss[i]->wpa_auth &&
312 data->cb(iface->bss[i]->wpa_auth, data->cb_ctx))
362 wpa_ft_rrb_rx(hapd->wpa_auth,
469 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth, sta->addr);
490 wpa_ft_rrb_rx(hapd->wpa_auth, ethhdr->h_source, buf + sizeof(*ethhdr),
537 hapd->wpa_auth = wpa_init(hapd->own_addr, &_conf, &cb);
538 if (hapd->wpa_auth == NULL) {
549 wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
587 wpa_reconfig(hapd->wpa_auth, &wpa_auth_conf)
    [all...]
hostapd.c 27 #include "wpa_auth.h"
78 if (hapd->conf->wpa && hapd->wpa_auth == NULL) {
80 if (hapd->wpa_auth)
81 wpa_init_keys(hapd->wpa_auth);
86 wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
90 } else if (hapd->wpa_auth) {
91 wpa_deinit(hapd->wpa_auth);
92 hapd->wpa_auth = NULL;
811 if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0
    [all...]
drv_callbacks.c 27 #include "wpa_auth.h"
157 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
164 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
479 if (rx_auth->auth_type == WLAN_AUTH_FT && hapd->wpa_auth) {
482 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
749 wpa_ft_rrb_rx(hapd->wpa_auth, data->ft_rrb_rx.src,
hostapd.h 111 struct wpa_authenticator *wpa_auth; member in struct:hostapd_data
preauth_auth.c 23 #include "wpa_auth.h"
208 if (wpa_auth_pmksa_add_preauth(hapd->wpa_auth, key, len,
ieee802_11.c 32 #include "wpa_auth.h"
247 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
506 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
690 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
712 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
955 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
962 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
    [all...]
ieee802_1x.c 27 #include "wpa_auth.h"
810 wpa_receive(hapd->wpa_auth, sta->wpa_sm, (u8 *) hdr,
    [all...]
beacon.c 29 #include "wpa_auth.h"
181 ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &ielen);
  /external/wpa_supplicant_8/hostapd/
Android.mk 92 OBJS += src/ap/wpa_auth.c
Makefile 49 OBJS += ../src/ap/wpa_auth.o
ctrl_iface.c 26 #include "ap/wpa_auth.h"
879 res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
Makefile 781 OBJS += ../src/ap/wpa_auth.o
811 OBJS_h += ../src/ap/wpa_auth.o
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 239 uint32 WPA_auth;
3960 int32 wpa_auth; \/* WPA type *\/ member in struct:wl_pfn
    [all...]

Completed in 381 milliseconds