Lines Matching defs:hostapd_data
98 struct hostapd_data { struct
99 struct hostapd_config *iconf;
100 struct hostapd_bss_config *conf;
101 int interface_added; /* virtual interface added for this BSS */
103 u8 own_addr[ETH_ALEN];
104 struct sta_info *sta_list; /* STA info list head */
107 struct sta_info *sta_hash[STA_HASH_SIZE];
108 int num_sta; /* number of entries in sta_list */
110 struct eapol_authenticator *eapol_auth;
111 struct wpa_authenticator *wpa_auth;
114 struct full_dynamic_vlan *full_dynamic_vlan;
118 struct wps_context *wps;
119 unsigned int ap_pin_failures;
120 unsigned int ap_pin_failures_consecutive;
121 struct upnp_wps_device_sm *wps_upnp;
122 unsigned int ap_pin_lockout_time;
124 struct wps_stat wps_stats;
125 void (*wps_event_cb)(void *ctx, enum wps_event event,
130 struct p2p_data *p2p;
131 struct p2p_group *p2p_group;
132 struct wpabuf *p2p_beacon_ie;
133 struct wpabuf *p2p_probe_resp_ie;
136 int num_sta_no_p2p;
139 int noa_enabled;
140 int noa_start;
141 int noa_duration;
166 struct hostapd_data *hostapd_get_hapd_data(void); argument