2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* hostapd / IEEE 802.11 Management: Beacon and Probe Request/Response
|
|
|
|
* Copyright (c) 2002-2004, Instant802 Networks, Inc.
|
|
|
|
* Copyright (c) 2005-2006, Devicescape Software, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BEACON_H
|
|
|
|
#define BEACON_H
|
|
|
|
|
2009-03-25 15:35:26 +01:00
|
|
|
struct ieee80211_mgmt;
|
2009-03-25 15:13:35 +01:00
|
|
|
|
2009-12-13 22:25:30 +01:00
|
|
|
void handle_probe_req(struct hostapd_data *hapd,
|
2012-04-01 17:48:12 +02:00
|
|
|
const struct ieee80211_mgmt *mgmt, size_t len,
|
|
|
|
int ssi_signal);
|
2008-02-28 02:34:43 +01:00
|
|
|
void ieee802_11_set_beacon(struct hostapd_data *hapd);
|
|
|
|
void ieee802_11_set_beacons(struct hostapd_iface *iface);
|
2012-04-01 17:12:04 +02:00
|
|
|
void ieee802_11_update_beacons(struct hostapd_iface *iface);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#endif /* BEACON_H */
|