2008-02-27 20:34:43 -05:00
|
|
|
/*
|
|
|
|
* hostapd / IEEE 802.11 Management
|
2009-12-06 12:41:47 -05:00
|
|
|
* Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
|
2008-02-27 20:34:43 -05:00
|
|
|
*
|
2012-02-11 09:46:35 -05:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-27 20:34:43 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IEEE802_11_H
|
|
|
|
#define IEEE802_11_H
|
|
|
|
|
2008-08-21 11:18:38 -04:00
|
|
|
struct hostapd_iface;
|
2008-02-27 20:34:43 -05:00
|
|
|
struct hostapd_data;
|
|
|
|
struct sta_info;
|
2009-01-09 09:55:59 -05:00
|
|
|
struct hostapd_frame_info;
|
2009-12-25 17:31:51 -05:00
|
|
|
struct ieee80211_ht_capabilities;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-12-13 16:25:30 -05:00
|
|
|
void ieee802_11_mgmt(struct hostapd_data *hapd, const u8 *buf, size_t len,
|
2009-12-13 16:05:39 -05:00
|
|
|
struct hostapd_frame_info *fi);
|
|
|
|
void ieee802_11_mgmt_cb(struct hostapd_data *hapd, const u8 *buf, size_t len,
|
2008-02-27 20:34:43 -05:00
|
|
|
u16 stype, int ok);
|
|
|
|
void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len);
|
2009-08-14 13:01:41 -04:00
|
|
|
#ifdef NEED_AP_MLME
|
2008-02-27 20:34:43 -05:00
|
|
|
int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
|
|
|
|
int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
char *buf, size_t buflen);
|
2009-08-14 13:01:41 -04:00
|
|
|
#else /* NEED_AP_MLME */
|
2009-01-08 11:40:14 -05:00
|
|
|
static inline int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ieee802_11_get_mib_sta(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta,
|
|
|
|
char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-08-14 13:01:41 -04:00
|
|
|
#endif /* NEED_AP_MLME */
|
2008-02-27 20:34:43 -05:00
|
|
|
u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
int probe);
|
2011-01-28 12:21:59 -05:00
|
|
|
u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid);
|
2013-07-24 05:28:20 -04:00
|
|
|
u8 * hostapd_eid_qos_map_set(struct hostapd_data *hapd, u8 *eid);
|
2008-02-27 20:34:43 -05:00
|
|
|
u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
|
|
|
|
u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
|
2009-11-29 05:02:29 -05:00
|
|
|
u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid);
|
2008-08-21 11:18:38 -04:00
|
|
|
u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
|
2012-06-30 06:57:52 -04:00
|
|
|
u8 * hostapd_eid_vht_capabilities(struct hostapd_data *hapd, u8 *eid);
|
|
|
|
u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid);
|
2008-08-21 11:18:38 -04:00
|
|
|
int hostapd_ht_operation_update(struct hostapd_iface *iface);
|
2008-12-30 11:04:29 -05:00
|
|
|
void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
|
|
|
|
const u8 *addr, const u8 *trans_id);
|
2009-12-06 12:41:47 -05:00
|
|
|
void hostapd_get_ht_capab(struct hostapd_data *hapd,
|
|
|
|
struct ieee80211_ht_capabilities *ht_cap,
|
|
|
|
struct ieee80211_ht_capabilities *neg_ht_cap);
|
2012-12-28 10:30:30 -05:00
|
|
|
void hostapd_get_vht_capab(struct hostapd_data *hapd,
|
|
|
|
struct ieee80211_vht_capabilities *vht_cap,
|
|
|
|
struct ieee80211_vht_capabilities *neg_vht_cap);
|
2011-02-21 10:27:16 -05:00
|
|
|
u16 copy_sta_ht_capab(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
const u8 *ht_capab, size_t ht_capab_len);
|
2009-12-06 12:41:47 -05:00
|
|
|
void update_ht_state(struct hostapd_data *hapd, struct sta_info *sta);
|
2012-08-10 12:49:18 -04:00
|
|
|
u16 copy_sta_vht_capab(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
const u8 *vht_capab, size_t vht_capab_len);
|
2009-12-13 16:05:39 -05:00
|
|
|
void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
|
|
|
|
const u8 *buf, size_t len, int ack);
|
2011-11-19 06:00:30 -05:00
|
|
|
void hostapd_eapol_tx_status(struct hostapd_data *hapd, const u8 *dst,
|
|
|
|
const u8 *data, size_t len, int ack);
|
2009-12-24 04:46:22 -05:00
|
|
|
void ieee802_11_rx_from_unknown(struct hostapd_data *hapd, const u8 *src,
|
|
|
|
int wds);
|
2011-10-17 10:30:43 -04:00
|
|
|
u8 * hostapd_eid_assoc_comeback_time(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, u8 *eid);
|
|
|
|
void ieee802_11_sa_query_action(struct hostapd_data *hapd,
|
|
|
|
const u8 *sa, const u8 action_type,
|
|
|
|
const u8 *trans_id);
|
2011-10-17 14:03:52 -04:00
|
|
|
u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid);
|
2011-10-17 16:19:52 -04:00
|
|
|
u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid);
|
2011-10-17 16:55:50 -04:00
|
|
|
u8 * hostapd_eid_roaming_consortium(struct hostapd_data *hapd, u8 *eid);
|
2011-10-17 17:24:16 -04:00
|
|
|
u8 * hostapd_eid_time_adv(struct hostapd_data *hapd, u8 *eid);
|
|
|
|
u8 * hostapd_eid_time_zone(struct hostapd_data *hapd, u8 *eid);
|
|
|
|
int hostapd_update_time_adv(struct hostapd_data *hapd);
|
2011-10-20 14:03:08 -04:00
|
|
|
void hostapd_client_poll_ok(struct hostapd_data *hapd, const u8 *addr);
|
2012-05-27 20:35:00 -04:00
|
|
|
u8 * hostapd_eid_bss_max_idle_period(struct hostapd_data *hapd, u8 *eid);
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
#endif /* IEEE802_11_H */
|