Add resident.conf(5) and varsym.conf(5) manual pages.
[dragonfly/vkernel-mp.git] / contrib / hostapd-0.4.9 / iapp.h
blobd6e8f6570e2b5a09950fac59c907244faddb9097
1 #ifndef IAPP_H
2 #define IAPP_H
4 struct iapp_data;
6 #ifdef CONFIG_IAPP
8 void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta);
9 struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface);
10 void iapp_deinit(struct iapp_data *iapp);
12 #else /* CONFIG_IAPP */
14 static inline void iapp_new_station(struct iapp_data *iapp,
15 struct sta_info *sta)
19 static inline struct iapp_data * iapp_init(struct hostapd_data *hapd,
20 const char *iface)
22 return NULL;
25 static inline void iapp_deinit(struct iapp_data *iapp)
29 #endif /* CONFIG_IAPP */
31 #endif /* IAPP_H */