Merge commit 'garage/master'
[wpasupplicant] / hostapd / ieee802_11.h
1 /*
2  * hostapd / IEEE 802.11 Management
3  * Copyright (c) 2002-2006, Jouni Malinen <j@w1.fi>
4  * Copyright (c) 2007-2008, Intel Corporation
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 IEEE802_11_H
17 #define IEEE802_11_H
18
19 #include "ieee802_11_defs.h"
20 #include "ieee802_11_common.h"
21
22 struct hostapd_iface;
23 struct hostapd_data;
24 struct sta_info;
25 struct hostapd_frame_info;
26
27 void ieee802_11_send_deauth(struct hostapd_data *hapd, u8 *addr, u16 reason);
28 void ieee802_11_mgmt(struct hostapd_data *hapd, u8 *buf, size_t len,
29                      u16 stype, struct hostapd_frame_info *fi);
30 void ieee802_11_mgmt_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
31                         u16 stype, int ok);
32 void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len);
33 #ifdef NEED_MLME
34 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
35 int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
36                            char *buf, size_t buflen);
37 #else /* NEED_MLME */
38 static inline int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf,
39                                      size_t buflen)
40 {
41         return 0;
42 }
43
44 static inline int ieee802_11_get_mib_sta(struct hostapd_data *hapd,
45                                          struct sta_info *sta,
46                                          char *buf, size_t buflen)
47 {
48         return 0;
49 }
50 #endif /* NEED_MLME */
51 u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
52                            int probe);
53 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
54 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
55 u8 * hostapd_eid_ht_capabilities_info(struct hostapd_data *hapd, u8 *eid);
56 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
57 int hostapd_ht_operation_update(struct hostapd_iface *iface);
58 void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
59                                   const u8 *addr, const u8 *trans_id);
60
61 #endif /* IEEE802_11_H */