8e1146d9da
If the RADIUS server includes deauthentication request in Access-Accept, send a WNM-Notification frame to the station after 4-way handshake and disconnect the station after configurable timeout. A new control interface command, WNM_DEAUTH_REQ, is added for testing purposes to allow the notification frame to sent based on local request. This case does not disconnect the station automatically, i.e., a separate control interface command would be needed for that. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
22 lines
650 B
C
22 lines
650 B
C
/*
|
|
* Hotspot 2.0 AP ANQP processing
|
|
* Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef HS20_H
|
|
#define HS20_H
|
|
|
|
struct hostapd_data;
|
|
|
|
u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
|
|
u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
|
|
int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr,
|
|
u8 osu_method, const char *url);
|
|
int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd,
|
|
const u8 *addr,
|
|
const struct wpabuf *payload);
|
|
|
|
#endif /* HS20_H */
|