HomeSort by relevance Sort by last modified time
    Searched refs:hapd (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/wpa_supplicant_8/src/ap/
authsrv.h 12 int authsrv_init(struct hostapd_data *hapd);
13 void authsrv_deinit(struct hostapd_data *hapd);
bss_load.h 13 int bss_load_update_init(struct hostapd_data *hapd);
14 void bss_load_update_deinit(struct hostapd_data *hapd);
bss_load.c 21 struct hostapd_data *hapd = eloop_data; local
25 if (!(hapd->beacon_set_done && hapd->started))
28 err = hostapd_drv_get_survey(hapd, hapd->iface->freq);
34 ieee802_11_set_beacon(hapd);
36 sec = ((hapd->bss_load_update_timeout / 1000) * 1024) / 1000;
37 usec = (hapd->bss_load_update_timeout % 1000) * 1024;
38 eloop_register_timeout(sec, usec, update_channel_utilization, hapd,
43 int bss_load_update_init(struct hostapd_data *hapd)
    [all...]
tkip_countermeasures.c 26 struct hostapd_data *hapd = eloop_ctx; local
27 hapd->tkip_countermeasures = 0;
28 hostapd_drv_set_countermeasures(hapd, 0);
29 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
34 static void ieee80211_tkip_countermeasures_start(struct hostapd_data *hapd)
38 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
41 wpa_auth_countermeasures_start(hapd->wpa_auth);
42 hapd->tkip_countermeasures = 1;
43 hostapd_drv_set_countermeasures(hapd, 1);
44 wpa_gtk_rekey(hapd->wpa_auth)
    [all...]
wpa_auth_glue.h 12 int hostapd_setup_wpa(struct hostapd_data *hapd);
13 void hostapd_reconfig_wpa(struct hostapd_data *hapd);
14 void hostapd_deinit_wpa(struct hostapd_data *hapd);
dhcp_snoop.h 14 int dhcp_snoop_init(struct hostapd_data *hapd);
15 void dhcp_snoop_deinit(struct hostapd_data *hapd);
19 static inline int dhcp_snoop_init(struct hostapd_data *hapd)
24 static inline void dhcp_snoop_deinit(struct hostapd_data *hapd)
ap_drv_ops.h 20 int hostapd_build_ap_extra_ies(struct hostapd_data *hapd,
24 void hostapd_free_ap_extra_ies(struct hostapd_data *hapd, struct wpabuf *beacon,
27 int hostapd_reset_ap_wps_ie(struct hostapd_data *hapd);
28 int hostapd_set_ap_wps_ie(struct hostapd_data *hapd);
29 int hostapd_set_authorized(struct hostapd_data *hapd,
31 int hostapd_set_sta_flags(struct hostapd_data *hapd, struct sta_info *sta);
32 int hostapd_set_drv_ieee8021x(struct hostapd_data *hapd, const char *ifname,
34 int hostapd_vlan_if_add(struct hostapd_data *hapd, const char *ifname);
35 int hostapd_vlan_if_remove(struct hostapd_data *hapd, const char *ifname);
36 int hostapd_set_wds_sta(struct hostapd_data *hapd, char *ifname_wds
    [all...]
ndisc_snoop.h 14 int ndisc_snoop_init(struct hostapd_data *hapd);
15 void ndisc_snoop_deinit(struct hostapd_data *hapd);
16 void sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta);
20 static inline int ndisc_snoop_init(struct hostapd_data *hapd)
25 static inline void ndisc_snoop_deinit(struct hostapd_data *hapd)
29 static inline void sta_ip6addr_del(struct hostapd_data *hapd,
dpp_hostapd.h 12 int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd);
13 int hostapd_dpp_bootstrap_gen(struct hostapd_data *hapd, const char *cmd);
14 int hostapd_dpp_bootstrap_remove(struct hostapd_data *hapd, const char *id);
15 const char * hostapd_dpp_bootstrap_get_uri(struct hostapd_data *hapd,
17 int hostapd_dpp_bootstrap_info(struct hostapd_data *hapd, int id,
19 int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd);
20 void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src,
22 void hostapd_dpp_tx_status(struct hostapd_data *hapd, const u8 *dst,
25 hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa,
27 int hostapd_dpp_configurator_add(struct hostapd_data *hapd, const char *cmd)
    [all...]
wps_hostapd.h 14 int hostapd_init_wps(struct hostapd_data *hapd,
16 int hostapd_init_wps_complete(struct hostapd_data *hapd);
17 void hostapd_deinit_wps(struct hostapd_data *hapd);
18 void hostapd_update_wps(struct hostapd_data *hapd);
19 void hostapd_wps_eap_completed(struct hostapd_data *hapd);
20 int hostapd_wps_add_pin(struct hostapd_data *hapd, const u8 *addr,
22 int hostapd_wps_button_pushed(struct hostapd_data *hapd,
24 int hostapd_wps_cancel(struct hostapd_data *hapd);
25 int hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr,
27 void hostapd_wps_ap_pin_disable(struct hostapd_data *hapd);
    [all...]
accounting.h 13 static inline int accounting_sta_get_id(struct hostapd_data *hapd,
19 static inline void accounting_sta_start(struct hostapd_data *hapd,
24 static inline void accounting_sta_stop(struct hostapd_data *hapd,
29 static inline int accounting_init(struct hostapd_data *hapd)
34 static inline void accounting_deinit(struct hostapd_data *hapd)
38 int accounting_sta_get_id(struct hostapd_data *hapd, struct sta_info *sta);
39 void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta);
40 void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta);
41 int accounting_init(struct hostapd_data *hapd);
42 void accounting_deinit(struct hostapd_data *hapd);
    [all...]
preauth_auth.h 14 int rsn_preauth_iface_init(struct hostapd_data *hapd);
15 void rsn_preauth_iface_deinit(struct hostapd_data *hapd);
16 void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta,
18 void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta,
20 void rsn_preauth_free_station(struct hostapd_data *hapd, struct sta_info *sta);
24 static inline int rsn_preauth_iface_init(struct hostapd_data *hapd)
29 static inline void rsn_preauth_iface_deinit(struct hostapd_data *hapd)
33 static inline void rsn_preauth_finished(struct hostapd_data *hapd,
39 static inline void rsn_preauth_send(struct hostapd_data *hapd,
45 static inline void rsn_preauth_free_station(struct hostapd_data *hapd,
    [all...]
ap_mlme.h 14 void mlme_authenticate_indication(struct hostapd_data *hapd,
17 void mlme_deauthenticate_indication(struct hostapd_data *hapd,
20 void mlme_associate_indication(struct hostapd_data *hapd,
23 void mlme_reassociate_indication(struct hostapd_data *hapd,
26 void mlme_disassociate_indication(struct hostapd_data *hapd,
29 void mlme_michaelmicfailure_indication(struct hostapd_data *hapd,
32 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
p2p_hostapd.c 23 int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
33 int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start,
40 hapd->noa_enabled = 0;
41 hapd->noa_start = 0;
42 hapd->noa_duration = 0;
48 return hostapd_driver_set_noa(hapd, count, start, duration);
51 hapd->noa_enabled = 1;
52 hapd->noa_start = start;
53 hapd->noa_duration = duration;
55 if (hapd->num_sta_no_p2p == 0)
    [all...]
ctrl_iface_ap.h 12 int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
14 int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
16 int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
18 int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
20 int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
22 int hostapd_ctrl_iface_signature(struct hostapd_data *hapd,
25 int hostapd_ctrl_iface_poll_sta(struct hostapd_data *hapd,
27 int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
31 int hostapd_ctrl_iface_stop_ap(struct hostapd_data *hapd);
32 int hostapd_ctrl_iface_pmksa_list(struct hostapd_data *hapd, char *buf
    [all...]
ap_drv_ops.c 67 int hostapd_build_ap_extra_ies(struct hostapd_data *hapd,
78 pos = hostapd_eid_time_adv(hapd, pos);
81 pos = hostapd_eid_time_zone(hapd, pos);
86 pos = hostapd_eid_ext_capab(hapd, pos);
89 pos = hostapd_eid_interworking(hapd, pos);
90 pos = hostapd_eid_adv_proto(hapd, pos);
91 pos = hostapd_eid_roaming_consortium(hapd, pos);
97 if (add_buf(&beacon, hapd->iface->fst_ies) < 0 ||
98 add_buf(&proberesp, hapd->iface->fst_ies) < 0 ||
99 add_buf(&assocresp, hapd->iface->fst_ies) < 0
764 struct hostapd_data *hapd = iface->bss[0]; local
829 struct hostapd_data *hapd = iface->bss[0]; local
    [all...]
fils_hlp.h 12 int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta,
17 void fils_hlp_deinit(struct hostapd_data *hapd);
21 static inline void fils_hlp_deinit(struct hostapd_data *hapd)
p2p_hostapd.h 14 int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
16 int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start,
18 void hostapd_p2p_non_p2p_sta_connected(struct hostapd_data *hapd);
19 void hostapd_p2p_non_p2p_sta_disconnected(struct hostapd_data *hapd);
24 static inline int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd,
33 u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid);
tkip_countermeasures.h 12 int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local);
13 void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd);
vlan_init.h 14 int vlan_init(struct hostapd_data *hapd);
15 void vlan_deinit(struct hostapd_data *hapd);
16 struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
20 int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id);
22 static inline int vlan_init(struct hostapd_data *hapd)
27 static inline void vlan_deinit(struct hostapd_data *hapd)
32 vlan_add_dynamic(struct hostapd_data *hapd, struct hostapd_vlan *vlan,
38 static inline int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id)
hs20.h 14 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
15 u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
16 int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr,
18 int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd,
ieee802_11.h 20 int ieee802_11_mgmt(struct hostapd_data *hapd, const u8 *buf, size_t len,
22 void ieee802_11_mgmt_cb(struct hostapd_data *hapd, const u8 *buf, size_t len,
24 void hostapd_2040_coex_action(struct hostapd_data *hapd,
27 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
28 int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
31 static inline int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf,
37 static inline int ieee802_11_get_mib_sta(struct hostapd_data *hapd,
44 u16 hostapd_own_capab_info(struct hostapd_data *hapd);
46 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid);
47 u8 * hostapd_eid_qos_map_set(struct hostapd_data *hapd, u8 *eid)
    [all...]
sta_info.c 42 static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
51 static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta);
54 int ap_for_each_sta(struct hostapd_data *hapd,
55 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
61 for (sta = hapd->sta_list; sta; sta = sta->next) {
62 if (cb(hapd, sta, ctx))
70 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
74 s = hapd->sta_hash[STA_HASH(sta)];
82 struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr)
86 for (sta = hapd->sta_list; sta; sta = sta->next)
394 struct hostapd_data *hapd = eloop_ctx; local
561 struct hostapd_data *hapd = eloop_ctx; local
621 struct hostapd_data *hapd = eloop_ctx; local
752 struct hostapd_data *hapd = eloop_ctx; local
801 struct hostapd_data *hapd = eloop_ctx; local
1090 struct hostapd_data *hapd = eloop_ctx; local
1375 struct hostapd_data *hapd = eloop_ctx; local
    [all...]
utils.c 18 int hostapd_register_probereq_cb(struct hostapd_data *hapd,
27 n = os_realloc_array(hapd->probereq_cb, hapd->num_probereq_cb + 1,
32 hapd->probereq_cb = n;
33 n = &hapd->probereq_cb[hapd->num_probereq_cb];
34 hapd->num_probereq_cb++;
44 struct hostapd_data *hapd; member in struct:prune_data
57 if (ohapd == data->hapd)
62 data->hapd->iface->fst &
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.h 13 int hostapd_ctrl_iface_init(struct hostapd_data *hapd);
14 void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd);
18 static inline int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
23 static inline void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)

Completed in 457 milliseconds

1 2 3 4