1e5b75505Sopenharmony_ci/*
2e5b75505Sopenharmony_ci * hostapd / IEEE 802.11 Management: Beacon and Probe Request/Response
3e5b75505Sopenharmony_ci * Copyright (c) 2002-2004, Instant802 Networks, Inc.
4e5b75505Sopenharmony_ci * Copyright (c) 2005-2006, Devicescape Software, Inc.
5e5b75505Sopenharmony_ci *
6e5b75505Sopenharmony_ci * This software may be distributed under the terms of the BSD license.
7e5b75505Sopenharmony_ci * See README for more details.
8e5b75505Sopenharmony_ci */
9e5b75505Sopenharmony_ci
10e5b75505Sopenharmony_ci#ifndef BEACON_H
11e5b75505Sopenharmony_ci#define BEACON_H
12e5b75505Sopenharmony_ci
13e5b75505Sopenharmony_cistruct ieee80211_mgmt;
14e5b75505Sopenharmony_ci
15e5b75505Sopenharmony_civoid handle_probe_req(struct hostapd_data *hapd,
16e5b75505Sopenharmony_ci		      const struct ieee80211_mgmt *mgmt, size_t len,
17e5b75505Sopenharmony_ci		      int ssi_signal);
18e5b75505Sopenharmony_ciint ieee802_11_set_beacon(struct hostapd_data *hapd);
19e5b75505Sopenharmony_ciint ieee802_11_set_beacons(struct hostapd_iface *iface);
20e5b75505Sopenharmony_ciint ieee802_11_update_beacons(struct hostapd_iface *iface);
21e5b75505Sopenharmony_ciint ieee802_11_build_ap_params(struct hostapd_data *hapd,
22e5b75505Sopenharmony_ci			       struct wpa_driver_ap_params *params);
23e5b75505Sopenharmony_civoid ieee802_11_free_ap_params(struct wpa_driver_ap_params *params);
24e5b75505Sopenharmony_civoid sta_track_add(struct hostapd_iface *iface, const u8 *addr, int ssi_signal);
25e5b75505Sopenharmony_civoid sta_track_del(struct hostapd_sta_info *info);
26e5b75505Sopenharmony_civoid sta_track_expire(struct hostapd_iface *iface, int force);
27e5b75505Sopenharmony_cistruct hostapd_data *
28e5b75505Sopenharmony_cista_track_seen_on(struct hostapd_iface *iface, const u8 *addr,
29e5b75505Sopenharmony_ci		  const char *ifname);
30e5b75505Sopenharmony_civoid sta_track_claim_taxonomy_info(struct hostapd_iface *iface, const u8 *addr,
31e5b75505Sopenharmony_ci				   struct wpabuf **probe_ie_taxonomy);
32e5b75505Sopenharmony_ci
33e5b75505Sopenharmony_ci#endif /* BEACON_H */
34