wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dhcp_snoop.h
Go to the documentation of this file.
1 
5 #ifndef DHCP_SNOOP_H
6 #define DHCP_SNOOP_H
7 
8 #ifdef CONFIG_PROXYARP
9 
10 int dhcp_snoop_init(struct hostapd_data *hapd);
11 void dhcp_snoop_deinit(struct hostapd_data *hapd);
12 
13 #else /* CONFIG_PROXYARP */
14 
15 static inline int dhcp_snoop_init(struct hostapd_data *hapd)
16 {
17  return 0;
18 }
19 
20 static inline void dhcp_snoop_deinit(struct hostapd_data *hapd)
21 {
22 }
23 
24 #endif /* CONFIG_PROXYARP */
25 
26 #endif /* DHCP_SNOOP_H */
hostapd per-BSS data structure
Definition: hostapd.h:103