Lines Matching defs:ap_data
164 struct ap_data { struct
165 int initialized; /* whether ap_data has been initialized */ argument
166 local_info_t *local;
167 int bridge_packets; /* send packet to associated STAs directly to the
170 unsigned int bridged_unicast; /* number of unicast frames bridged on
172 unsigned int bridged_multicast; /* number of non-unicast frames
174 unsigned int tx_drop_nonassoc; /* number of unicast TX packets dropped
177 int nullfunc_ack; /* use workaround for nullfunc frame ACKs */
179 spinlock_t sta_table_lock;
180 int num_sta; /* number of entries in sta_list */
181 struct list_head sta_list; /* STA info list head */
182 struct sta_info *sta_hash[STA_HASH_SIZE];
184 struct proc_dir_entry *proc;
186 ap_policy_enum ap_policy;
187 unsigned int max_inactivity;
188 int autom_ap_wds;
190 struct mac_restrictions mac_restrictions; /* MAC-based auth */
191 int last_tx_rate;
193 struct work_struct add_sta_proc_queue;
194 struct add_sta_proc_data *add_sta_proc_entries;
196 struct work_struct wds_oper_queue;
197 struct wds_oper_data *wds_oper_entries;
222 void hostap_free_data(struct ap_data *ap); argument