wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
iapp.h
Go to the documentation of this file.
1 
5 #ifndef IAPP_H
6 #define IAPP_H
7 
8 struct iapp_data;
9 
10 #ifdef CONFIG_IAPP
11 
12 void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta);
13 struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface);
14 void iapp_deinit(struct iapp_data *iapp);
15 
16 #else /* CONFIG_IAPP */
17 
18 static inline void iapp_new_station(struct iapp_data *iapp,
19  struct sta_info *sta)
20 {
21 }
22 
23 static inline struct iapp_data * iapp_init(struct hostapd_data *hapd,
24  const char *iface)
25 {
26  return NULL;
27 }
28 
29 static inline void iapp_deinit(struct iapp_data *iapp)
30 {
31 }
32 
33 #endif /* CONFIG_IAPP */
34 
35 #endif /* IAPP_H */
Definition: sta_info.h:44
Definition: iapp.c:165
void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta)
IAPP processing for a new STA.
Definition: iapp.c:239
hostapd per-BSS data structure
Definition: hostapd.h:103