Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * hostapd / Initialization and configuration |
| 3 | * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> |
| 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef HOSTAPD_H |
| 10 | #define HOSTAPD_H |
| 11 | |
| 12 | #include "common/defs.h" |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 13 | #include "ap_config.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 14 | |
| 15 | struct wpa_driver_ops; |
| 16 | struct wpa_ctrl_dst; |
| 17 | struct radius_server_data; |
| 18 | struct upnp_wps_device_sm; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 19 | struct hostapd_data; |
| 20 | struct sta_info; |
| 21 | struct hostap_sta_driver_data; |
| 22 | struct ieee80211_ht_capabilities; |
| 23 | struct full_dynamic_vlan; |
| 24 | enum wps_event; |
| 25 | union wps_event_data; |
| 26 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 27 | struct hostapd_iface; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 28 | struct hostapd_dynamic_iface; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 29 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 30 | struct hapd_interfaces { |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 31 | int (*reload_config)(struct hostapd_iface *iface); |
| 32 | struct hostapd_config * (*config_read_cb)(const char *config_fname); |
| 33 | int (*ctrl_iface_init)(struct hostapd_data *hapd); |
| 34 | void (*ctrl_iface_deinit)(struct hostapd_data *hapd); |
| 35 | int (*for_each_interface)(struct hapd_interfaces *interfaces, |
| 36 | int (*cb)(struct hostapd_iface *iface, |
| 37 | void *ctx), void *ctx); |
| 38 | int (*driver_init)(struct hostapd_iface *iface); |
| 39 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 40 | size_t count; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 41 | size_t count_dynamic; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 42 | int global_ctrl_sock; |
| 43 | char *global_iface_path; |
| 44 | char *global_iface_name; |
Dmitry Shmidt | 0ccb66e | 2013-03-29 16:41:28 -0700 | [diff] [blame] | 45 | gid_t ctrl_iface_group; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 46 | struct hostapd_iface **iface; |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 47 | struct hostapd_dynamic_iface **dynamic_iface; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame^] | 50 | enum hostapd_chan_status { |
| 51 | HOSTAPD_CHAN_VALID = 0, /* channel is ready */ |
| 52 | HOSTAPD_CHAN_INVALID = 1, /* no usable channel found */ |
| 53 | HOSTAPD_CHAN_ACS = 2, /* ACS work being performed */ |
| 54 | }; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 55 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 56 | struct hostapd_probereq_cb { |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 57 | int (*cb)(void *ctx, const u8 *sa, const u8 *da, const u8 *bssid, |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 58 | const u8 *ie, size_t ie_len, int ssi_signal); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 59 | void *ctx; |
| 60 | }; |
| 61 | |
| 62 | #define HOSTAPD_RATE_BASIC 0x00000001 |
| 63 | |
| 64 | struct hostapd_rate_data { |
| 65 | int rate; /* rate in 100 kbps */ |
| 66 | int flags; /* HOSTAPD_RATE_ flags */ |
| 67 | }; |
| 68 | |
| 69 | struct hostapd_frame_info { |
| 70 | u32 channel; |
| 71 | u32 datarate; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 72 | int ssi_signal; /* dBm */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame^] | 75 | enum wps_status { |
| 76 | WPS_STATUS_SUCCESS = 1, |
| 77 | WPS_STATUS_FAILURE |
| 78 | }; |
| 79 | |
| 80 | enum pbc_status { |
| 81 | WPS_PBC_STATUS_DISABLE, |
| 82 | WPS_PBC_STATUS_ACTIVE, |
| 83 | WPS_PBC_STATUS_TIMEOUT, |
| 84 | WPS_PBC_STATUS_OVERLAP |
| 85 | }; |
| 86 | |
| 87 | struct wps_stat { |
| 88 | enum wps_status status; |
| 89 | enum wps_error_indication failure_reason; |
| 90 | enum pbc_status pbc_status; |
| 91 | u8 peer_addr[ETH_ALEN]; |
| 92 | }; |
| 93 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 94 | |
| 95 | /** |
| 96 | * struct hostapd_data - hostapd per-BSS data structure |
| 97 | */ |
| 98 | struct hostapd_data { |
| 99 | struct hostapd_iface *iface; |
| 100 | struct hostapd_config *iconf; |
| 101 | struct hostapd_bss_config *conf; |
| 102 | int interface_added; /* virtual interface added for this BSS */ |
| 103 | |
| 104 | u8 own_addr[ETH_ALEN]; |
| 105 | |
| 106 | int num_sta; /* number of entries in sta_list */ |
| 107 | struct sta_info *sta_list; /* STA info list head */ |
| 108 | #define STA_HASH_SIZE 256 |
| 109 | #define STA_HASH(sta) (sta[5]) |
| 110 | struct sta_info *sta_hash[STA_HASH_SIZE]; |
| 111 | |
| 112 | /* |
| 113 | * Bitfield for indicating which AIDs are allocated. Only AID values |
| 114 | * 1-2007 are used and as such, the bit at index 0 corresponds to AID |
| 115 | * 1. |
| 116 | */ |
| 117 | #define AID_WORDS ((2008 + 31) / 32) |
| 118 | u32 sta_aid[AID_WORDS]; |
| 119 | |
| 120 | const struct wpa_driver_ops *driver; |
| 121 | void *drv_priv; |
| 122 | |
| 123 | void (*new_assoc_sta_cb)(struct hostapd_data *hapd, |
| 124 | struct sta_info *sta, int reassoc); |
| 125 | |
| 126 | void *msg_ctx; /* ctx for wpa_msg() calls */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 127 | void *msg_ctx_parent; /* parent interface ctx for wpa_msg() calls */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 128 | |
| 129 | struct radius_client_data *radius; |
| 130 | u32 acct_session_id_hi, acct_session_id_lo; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 131 | struct radius_das_data *radius_das; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 132 | |
| 133 | struct iapp_data *iapp; |
| 134 | |
| 135 | struct hostapd_cached_radius_acl *acl_cache; |
| 136 | struct hostapd_acl_query_data *acl_queries; |
| 137 | |
| 138 | struct wpa_authenticator *wpa_auth; |
| 139 | struct eapol_authenticator *eapol_auth; |
| 140 | |
| 141 | struct rsn_preauth_interface *preauth_iface; |
| 142 | time_t michael_mic_failure; |
| 143 | int michael_mic_failures; |
| 144 | int tkip_countermeasures; |
| 145 | |
| 146 | int ctrl_sock; |
| 147 | struct wpa_ctrl_dst *ctrl_dst; |
| 148 | |
| 149 | void *ssl_ctx; |
| 150 | void *eap_sim_db_priv; |
| 151 | struct radius_server_data *radius_srv; |
| 152 | |
| 153 | int parameter_set_count; |
| 154 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 155 | /* Time Advertisement */ |
| 156 | u8 time_update_counter; |
| 157 | struct wpabuf *time_adv; |
| 158 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 159 | #ifdef CONFIG_FULL_DYNAMIC_VLAN |
| 160 | struct full_dynamic_vlan *full_dynamic_vlan; |
| 161 | #endif /* CONFIG_FULL_DYNAMIC_VLAN */ |
| 162 | |
| 163 | struct l2_packet_data *l2; |
| 164 | struct wps_context *wps; |
| 165 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 166 | int beacon_set_done; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 167 | struct wpabuf *wps_beacon_ie; |
| 168 | struct wpabuf *wps_probe_resp_ie; |
| 169 | #ifdef CONFIG_WPS |
| 170 | unsigned int ap_pin_failures; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 171 | unsigned int ap_pin_failures_consecutive; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 172 | struct upnp_wps_device_sm *wps_upnp; |
| 173 | unsigned int ap_pin_lockout_time; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame^] | 174 | |
| 175 | struct wps_stat wps_stats; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 176 | #endif /* CONFIG_WPS */ |
| 177 | |
| 178 | struct hostapd_probereq_cb *probereq_cb; |
| 179 | size_t num_probereq_cb; |
| 180 | |
| 181 | void (*public_action_cb)(void *ctx, const u8 *buf, size_t len, |
| 182 | int freq); |
| 183 | void *public_action_cb_ctx; |
Dmitry Shmidt | 4b9d52f | 2013-02-05 17:44:43 -0800 | [diff] [blame] | 184 | void (*public_action_cb2)(void *ctx, const u8 *buf, size_t len, |
| 185 | int freq); |
| 186 | void *public_action_cb2_ctx; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 187 | |
| 188 | int (*vendor_action_cb)(void *ctx, const u8 *buf, size_t len, |
| 189 | int freq); |
| 190 | void *vendor_action_cb_ctx; |
| 191 | |
| 192 | void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr, |
| 193 | const u8 *uuid_e); |
| 194 | void *wps_reg_success_cb_ctx; |
| 195 | |
| 196 | void (*wps_event_cb)(void *ctx, enum wps_event event, |
| 197 | union wps_event_data *data); |
| 198 | void *wps_event_cb_ctx; |
| 199 | |
| 200 | void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 201 | int authorized, const u8 *p2p_dev_addr); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 202 | void *sta_authorized_cb_ctx; |
| 203 | |
| 204 | void (*setup_complete_cb)(void *ctx); |
| 205 | void *setup_complete_cb_ctx; |
| 206 | |
| 207 | #ifdef CONFIG_P2P |
| 208 | struct p2p_data *p2p; |
| 209 | struct p2p_group *p2p_group; |
| 210 | struct wpabuf *p2p_beacon_ie; |
| 211 | struct wpabuf *p2p_probe_resp_ie; |
| 212 | |
| 213 | /* Number of non-P2P association stations */ |
| 214 | int num_sta_no_p2p; |
| 215 | |
| 216 | /* Periodic NoA (used only when no non-P2P clients in the group) */ |
| 217 | int noa_enabled; |
| 218 | int noa_start; |
| 219 | int noa_duration; |
| 220 | #endif /* CONFIG_P2P */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 221 | #ifdef CONFIG_INTERWORKING |
| 222 | size_t gas_frag_limit; |
| 223 | #endif /* CONFIG_INTERWORKING */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 224 | |
| 225 | #ifdef CONFIG_SQLITE |
| 226 | struct hostapd_eap_user tmp_eap_user; |
| 227 | #endif /* CONFIG_SQLITE */ |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 228 | |
| 229 | #ifdef CONFIG_SAE |
| 230 | /** Key used for generating SAE anti-clogging tokens */ |
| 231 | u8 sae_token_key[8]; |
| 232 | os_time_t last_sae_token_key_update; |
| 233 | #endif /* CONFIG_SAE */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | |
| 237 | /** |
| 238 | * struct hostapd_iface - hostapd per-interface data structure |
| 239 | */ |
| 240 | struct hostapd_iface { |
| 241 | struct hapd_interfaces *interfaces; |
| 242 | void *owner; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 243 | char *config_fname; |
| 244 | struct hostapd_config *conf; |
| 245 | |
| 246 | size_t num_bss; |
| 247 | struct hostapd_data **bss; |
| 248 | |
| 249 | int num_ap; /* number of entries in ap_list */ |
| 250 | struct ap_info *ap_list; /* AP info list head */ |
| 251 | struct ap_info *ap_hash[STA_HASH_SIZE]; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 252 | |
| 253 | unsigned int drv_flags; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 254 | |
| 255 | /* |
| 256 | * A bitmap of supported protocols for probe response offload. See |
| 257 | * struct wpa_driver_capa in driver.h |
| 258 | */ |
| 259 | unsigned int probe_resp_offloads; |
| 260 | |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 261 | /* extended capabilities supported by the driver */ |
| 262 | const u8 *extended_capa, *extended_capa_mask; |
| 263 | unsigned int extended_capa_len; |
| 264 | |
Dmitry Shmidt | 8bae413 | 2013-06-06 11:25:10 -0700 | [diff] [blame] | 265 | unsigned int drv_max_acl_mac_addrs; |
| 266 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 267 | struct hostapd_hw_modes *hw_features; |
| 268 | int num_hw_features; |
| 269 | struct hostapd_hw_modes *current_mode; |
| 270 | /* Rates that are currently used (i.e., filtered copy of |
| 271 | * current_mode->channels */ |
| 272 | int num_rates; |
| 273 | struct hostapd_rate_data *current_rates; |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 274 | int *basic_rates; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 275 | int freq; |
| 276 | |
| 277 | u16 hw_flags; |
| 278 | |
| 279 | /* Number of associated Non-ERP stations (i.e., stations using 802.11b |
| 280 | * in 802.11g BSS) */ |
| 281 | int num_sta_non_erp; |
| 282 | |
| 283 | /* Number of associated stations that do not support Short Slot Time */ |
| 284 | int num_sta_no_short_slot_time; |
| 285 | |
| 286 | /* Number of associated stations that do not support Short Preamble */ |
| 287 | int num_sta_no_short_preamble; |
| 288 | |
| 289 | int olbc; /* Overlapping Legacy BSS Condition */ |
| 290 | |
| 291 | /* Number of HT associated stations that do not support greenfield */ |
| 292 | int num_sta_ht_no_gf; |
| 293 | |
| 294 | /* Number of associated non-HT stations */ |
| 295 | int num_sta_no_ht; |
| 296 | |
| 297 | /* Number of HT associated stations 20 MHz */ |
| 298 | int num_sta_ht_20mhz; |
| 299 | |
| 300 | /* Overlapping BSS information */ |
| 301 | int olbc_ht; |
| 302 | |
| 303 | u16 ht_op_mode; |
Dmitry Shmidt | b7b4d0e | 2013-08-26 12:09:05 -0700 | [diff] [blame^] | 304 | |
| 305 | /* surveying helpers */ |
| 306 | |
| 307 | /* number of channels surveyed */ |
| 308 | unsigned int chans_surveyed; |
| 309 | |
| 310 | /* lowest observed noise floor in dBm */ |
| 311 | s8 lowest_nf; |
| 312 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 313 | void (*scan_cb)(struct hostapd_iface *iface); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 314 | }; |
| 315 | |
Dmitry Shmidt | 34af306 | 2013-07-11 10:46:32 -0700 | [diff] [blame] | 316 | /** |
| 317 | * struct hostapd_dynamic_iface - hostapd per dynamically allocated |
| 318 | * or added interface data structure |
| 319 | */ |
| 320 | struct hostapd_dynamic_iface { |
| 321 | char parent[IFNAMSIZ + 1]; |
| 322 | char iface[IFNAMSIZ + 1]; |
| 323 | unsigned int usage; |
| 324 | }; |
| 325 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 326 | /* hostapd.c */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 327 | int hostapd_for_each_interface(struct hapd_interfaces *interfaces, |
| 328 | int (*cb)(struct hostapd_iface *iface, |
| 329 | void *ctx), void *ctx); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 330 | int hostapd_reload_config(struct hostapd_iface *iface); |
| 331 | struct hostapd_data * |
| 332 | hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface, |
| 333 | struct hostapd_config *conf, |
| 334 | struct hostapd_bss_config *bss); |
| 335 | int hostapd_setup_interface(struct hostapd_iface *iface); |
| 336 | int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err); |
| 337 | void hostapd_interface_deinit(struct hostapd_iface *iface); |
| 338 | void hostapd_interface_free(struct hostapd_iface *iface); |
| 339 | void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta, |
| 340 | int reassoc); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 341 | void hostapd_interface_deinit_free(struct hostapd_iface *iface); |
| 342 | int hostapd_enable_iface(struct hostapd_iface *hapd_iface); |
| 343 | int hostapd_reload_iface(struct hostapd_iface *hapd_iface); |
| 344 | int hostapd_disable_iface(struct hostapd_iface *hapd_iface); |
| 345 | int hostapd_add_iface(struct hapd_interfaces *ifaces, char *buf); |
| 346 | int hostapd_remove_iface(struct hapd_interfaces *ifaces, char *buf); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 347 | |
| 348 | /* utils.c */ |
| 349 | int hostapd_register_probereq_cb(struct hostapd_data *hapd, |
| 350 | int (*cb)(void *ctx, const u8 *sa, |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 351 | const u8 *da, const u8 *bssid, |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 352 | const u8 *ie, size_t ie_len, |
| 353 | int ssi_signal), |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 354 | void *ctx); |
| 355 | void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr); |
| 356 | |
| 357 | /* drv_callbacks.c (TODO: move to somewhere else?) */ |
| 358 | int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr, |
| 359 | const u8 *ie, size_t ielen, int reassoc); |
| 360 | void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr); |
| 361 | void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr); |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 362 | void hostapd_event_connect_failed_reason(struct hostapd_data *hapd, |
| 363 | const u8 *addr, int reason_code); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 364 | int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da, |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 365 | const u8 *bssid, const u8 *ie, size_t ie_len, |
| 366 | int ssi_signal); |
| 367 | void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht, |
| 368 | int offset); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 369 | |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 370 | const struct hostapd_eap_user * |
| 371 | hostapd_get_eap_user(struct hostapd_data *hapd, const u8 *identity, |
| 372 | size_t identity_len, int phase2); |
| 373 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 374 | #endif /* HOSTAPD_H */ |