beacon.h
Go to the documentation of this file.00001
00017 #ifndef BEACON_H
00018 #define BEACON_H
00019
00020 struct ieee80211_mgmt;
00021
00022 void handle_probe_req(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
00023 size_t len);
00024 #ifdef NEED_AP_MLME
00025 void ieee802_11_set_beacon(struct hostapd_data *hapd);
00026 void ieee802_11_set_beacons(struct hostapd_iface *iface);
00027 #else
00028 static inline void ieee802_11_set_beacon(struct hostapd_data *hapd)
00029 {
00030 }
00031
00032 static inline void ieee802_11_set_beacons(struct hostapd_iface *iface)
00033 {
00034 }
00035 #endif
00036
00037 #endif
00038