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