Select one of the symbols to view example projects that use it.
 
Outline
#define IEEE802_1X_H
hostapd_data
sta_info
eapol_state_machine
hostapd_config
hostapd_bss_config
hostapd_radius_attr
radius_msg
ieee802_1x_receive(struct hostapd_data *, const u8 *, const u8 *, size_t);
ieee802_1x_free_station(struct hostapd_data *, struct sta_info *);
ieee802_1x_init(struct hostapd_data *);
ieee802_1x_alloc_eapol_sm(struct hostapd_data *, struct sta_info *);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/ap/ieee802_1x.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * hostapd / IEEE 802.1X-2004 Authenticator * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi> * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef IEEE802_1X_H #define IEEE802_1X_H struct hostapd_data; struct sta_info; struct eapol_state_machine; struct hostapd_config; struct hostapd_bss_config; struct hostapd_radius_attr; struct radius_msg; void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf, size_t len); void ieee802_1x_free_station(struct hostapd_data *hapd, struct sta_info *sta); int ieee802_1x_init(struct hostapd_data *hapd); struct eapol_state_machine * ieee802_1x_alloc_eapol_sm(struct hostapd_data *hapd, struct sta_info *sta); /* ... */ #endif /* IEEE802_1X_H */
Details