blob: a04a829cb3081e0c26cfaaf5fe7b06e83b879a88 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / IEEE 802.11 Management: Beacon and Probe Request/Response
3 * Copyright (c) 2002-2004, Instant802 Networks, Inc.
4 * Copyright (c) 2005-2006, Devicescape Software, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Alternatively, this software may be distributed under the terms of BSD
11 * license.
12 *
13 * See README and COPYING for more details.
14 */
15
16#ifndef BEACON_H
17#define BEACON_H
18
19struct ieee80211_mgmt;
20
21void handle_probe_req(struct hostapd_data *hapd,
Dmitry Shmidt04949592012-07-19 12:16:46 -070022 const struct ieee80211_mgmt *mgmt, size_t len,
23 int ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024void ieee802_11_set_beacon(struct hostapd_data *hapd);
25void ieee802_11_set_beacons(struct hostapd_iface *iface);
Dmitry Shmidt04949592012-07-19 12:16:46 -070026void ieee802_11_update_beacons(struct hostapd_iface *iface);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -080027int ieee802_11_build_ap_params(struct hostapd_data *hapd,
28 struct wpa_driver_ap_params *params);
29void ieee802_11_free_ap_params(struct wpa_driver_ap_params *params);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070030
31#endif /* BEACON_H */