OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * hostapd / ubus support
3 * Copyright (c) 2013, Felix Fietkau <nbd@nbd.name>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8 #ifndef __HOSTAPD_UBUS_H
9 #define __HOSTAPD_UBUS_H
10  
11 enum hostapd_ubus_event_type {
12 HOSTAPD_UBUS_PROBE_REQ,
13 HOSTAPD_UBUS_AUTH_REQ,
14 HOSTAPD_UBUS_ASSOC_REQ,
15 HOSTAPD_UBUS_TYPE_MAX
16 };
17  
18 struct hostapd_ubus_request {
19 enum hostapd_ubus_event_type type;
20 const struct ieee80211_mgmt *mgmt_frame;
21 const struct ieee802_11_elems *elems;
22 const struct hostapd_frame_info *frame_info;
23 const u8 *addr;
24 };
25  
26 struct hostapd_iface;
27 struct hostapd_data;
28  
29 #ifdef UBUS_SUPPORT
30  
31 #include <libubox/avl.h>
32 #include <libubus.h>
33  
34 struct hostapd_ubus_bss {
35 struct ubus_object obj;
36 struct avl_tree banned;
37 int notify_response;
38 };
39  
40 void hostapd_ubus_add_iface(struct hostapd_iface *iface);
41 void hostapd_ubus_free_iface(struct hostapd_iface *iface);
42 void hostapd_ubus_add_bss(struct hostapd_data *hapd);
43 void hostapd_ubus_free_bss(struct hostapd_data *hapd);
44  
45 int hostapd_ubus_handle_event(struct hostapd_data *hapd, struct hostapd_ubus_request *req);
46 void hostapd_ubus_notify(struct hostapd_data *hapd, const char *type, const u8 *mac);
47  
48 #else
49  
50 struct hostapd_ubus_bss {};
51  
52 static inline void hostapd_ubus_add_iface(struct hostapd_iface *iface)
53 {
54 }
55  
56 static inline void hostapd_ubus_free_iface(struct hostapd_iface *iface)
57 {
58 }
59  
60 static inline void hostapd_ubus_add_bss(struct hostapd_data *hapd)
61 {
62 }
63  
64 static inline void hostapd_ubus_free_bss(struct hostapd_data *hapd)
65 {
66 }
67  
68 static inline int hostapd_ubus_handle_event(struct hostapd_data *hapd, struct hostapd_ubus_request *req)
69 {
70 return 0;
71 }
72  
73 static inline void hostapd_ubus_notify(struct hostapd_data *hapd, const char *type, const u8 *mac)
74 {
75 }
76 #endif
77  
78 #endif