ctrl_iface.h
Go to the documentation of this file.00001
00016 #ifndef CTRL_IFACE_H
00017 #define CTRL_IFACE_H
00018
00019 #ifndef CONFIG_NO_CTRL_IFACE
00020 int hostapd_ctrl_iface_init(struct hostapd_data *hapd);
00021 void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd);
00022 #else
00023 static inline int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
00024 {
00025 return 0;
00026 }
00027
00028 static inline void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
00029 {
00030 }
00031 #endif
00032
00033 #endif
00034