]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/ap/ieee802_11.h
Remove set_intra_bss() driver_ops
[thirdparty/hostap.git] / src / ap / ieee802_11.h
CommitLineData
6fc6879b
JM
1/*
2 * hostapd / IEEE 802.11 Management
d45354be 3 * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
6fc6879b
JM
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
11 *
12 * See README and COPYING for more details.
13 */
14
15#ifndef IEEE802_11_H
16#define IEEE802_11_H
17
de9289c8 18struct hostapd_iface;
6fc6879b
JM
19struct hostapd_data;
20struct sta_info;
649d8890 21struct hostapd_frame_info;
81f4f619 22struct ieee80211_ht_capabilities;
6fc6879b 23
b57e086c 24void ieee802_11_mgmt(struct hostapd_data *hapd, const u8 *buf, size_t len,
f8b1f695
JM
25 struct hostapd_frame_info *fi);
26void ieee802_11_mgmt_cb(struct hostapd_data *hapd, const u8 *buf, size_t len,
6fc6879b 27 u16 stype, int ok);
6fc6879b 28void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len);
fe6bdb77 29#ifdef NEED_AP_MLME
6fc6879b
JM
30int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
31int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
32 char *buf, size_t buflen);
fe6bdb77 33#else /* NEED_AP_MLME */
9c584c06
JM
34static inline int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf,
35 size_t buflen)
36{
37 return 0;
38}
39
40static inline int ieee802_11_get_mib_sta(struct hostapd_data *hapd,
41 struct sta_info *sta,
42 char *buf, size_t buflen)
43{
44 return 0;
45}
fe6bdb77 46#endif /* NEED_AP_MLME */
6fc6879b
JM
47u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
48 int probe);
1161ff1e 49u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid);
6fc6879b
JM
50u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
51u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
a49148fd 52u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid);
de9289c8
JM
53u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
54int hostapd_ht_operation_update(struct hostapd_iface *iface);
88b4b424
JM
55void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
56 const u8 *addr, const u8 *trans_id);
d45354be
JM
57void hostapd_get_ht_capab(struct hostapd_data *hapd,
58 struct ieee80211_ht_capabilities *ht_cap,
59 struct ieee80211_ht_capabilities *neg_ht_cap);
f39b07d7
HS
60u16 copy_sta_ht_capab(struct hostapd_data *hapd, struct sta_info *sta,
61 const u8 *ht_capab, size_t ht_capab_len);
d45354be 62void update_ht_state(struct hostapd_data *hapd, struct sta_info *sta);
f8b1f695
JM
63void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
64 const u8 *buf, size_t len, int ack);
fbbfcbac
FF
65void ieee802_11_rx_from_unknown(struct hostapd_data *hapd, const u8 *src,
66 int wds);
d4370eac
MP
67u8 * hostapd_eid_assoc_comeback_time(struct hostapd_data *hapd,
68 struct sta_info *sta, u8 *eid);
69void ieee802_11_sa_query_action(struct hostapd_data *hapd,
70 const u8 *sa, const u8 action_type,
71 const u8 *trans_id);
06c4d247 72u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid);
6fc6879b
JM
73
74#endif /* IEEE802_11_H */