Home | History | Annotate | Download | only in ap

Lines Matching defs:hapd

17 int hostapd_register_probereq_cb(struct hostapd_data *hapd,
26 n = os_realloc_array(hapd->probereq_cb, hapd->num_probereq_cb + 1,
31 hapd->probereq_cb = n;
32 n = &hapd->probereq_cb[hapd->num_probereq_cb];
33 hapd->num_probereq_cb++;
43 struct hostapd_data *hapd;
56 if (ohapd == data->hapd)
70 * @hapd: Pointer to BSS data for the most recent association
76 void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr)
79 data.hapd = hapd;
81 if (hapd->iface->interfaces &&
82 hapd->iface->interfaces->for_each_interface)
83 hapd->iface->interfaces->for_each_interface(
84 hapd->iface->interfaces, prune_associations, &data);