Select one of the symbols to view example projects that use it.
 
Outline
#define IEEE802_11_H
wpa_validate_result
auth_sae_queued_addr(struct hostapd_data *, const u8 *);
auth_sae_queue(struct hostapd_data *, u8 *, size_t, u8 *, u16, u32);
handle_auth_sae(struct hostapd_data *, struct sta_info *, u8 *, size_t, u8 *, u16, u16);
wpa_res_to_status_code(enum wpa_validate_result);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/ap/ieee802_11.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * hostapd / IEEE 802.11 Management * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef IEEE802_11_H #define IEEE802_11_H enum wpa_validate_result; int auth_sae_queued_addr(struct hostapd_data *hapd, const u8 *addr); int auth_sae_queue(struct hostapd_data *hapd, u8 *buf, size_t len, u8 *bssid, u16 status, u32 auth_transaction); int handle_auth_sae(struct hostapd_data *hapd, struct sta_info *sta, u8 *buf, size_t len, u8 *bssid, u16 auth_transaction, u16 status); u16 wpa_res_to_status_code(enum wpa_validate_result res); /* ... */ #endif /* IEEE802_11_H */
Details