1 /* 2 * hostapd / IEEE 802.11 Management 3 * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> 4 * 5 * This software may be distributed under the terms of the BSD license. 6 * See README for more details. 7 */ 8 9 #ifndef IEEE802_11_H 10 #define IEEE802_11_H 11 12 enum wpa_validate_result; 13 int auth_sae_queued_addr(struct hostapd_data *hapd, const u8 *addr); 14 int auth_sae_queue(struct hostapd_data *hapd, u8 *buf, size_t len, u8 *bssid, u16 status, u32 auth_transaction); 15 int handle_auth_sae(struct hostapd_data *hapd, struct sta_info *sta, 16 u8 *buf, size_t len, u8 *bssid, 17 u16 auth_transaction, u16 status); 18 u16 wpa_res_to_status_code(enum wpa_validate_result res); 19 20 #endif /* IEEE802_11_H */ 21