123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BEACON_H
- #define BEACON_H
- struct ieee80211_mgmt;
- void handle_probe_req(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
- size_t len);
- #ifdef NEED_AP_MLME
- void ieee802_11_set_beacon(struct hostapd_data *hapd);
- void ieee802_11_set_beacons(struct hostapd_iface *iface);
- #else
- static inline void ieee802_11_set_beacon(struct hostapd_data *hapd)
- {
- }
- static inline void ieee802_11_set_beacons(struct hostapd_iface *iface)
- {
- }
- #endif
- #endif
|