Home | History | Annotate | Download | only in ap

Lines Matching defs:hapd

18 int hostapd_register_probereq_cb(struct hostapd_data *hapd,
27 n = os_realloc_array(hapd->probereq_cb, hapd->num_probereq_cb + 1,
32 hapd->probereq_cb = n;
33 n = &hapd->probereq_cb[hapd->num_probereq_cb];
34 hapd->num_probereq_cb++;
44 struct hostapd_data *hapd;
57 if (ohapd == data->hapd)
62 data->hapd->iface->fst &&
64 data->hapd->iface->fst))
81 * @hapd: Pointer to BSS data for the most recent association
87 void hostapd_prune_associations(struct hostapd_data *hapd, const u8 *addr)
90 data.hapd = hapd;
92 if (hapd->iface->interfaces &&
93 hapd->iface->interfaces->for_each_interface)
94 hapd->iface->interfaces->for_each_interface(
95 hapd->iface->interfaces, prune_associations, &data);