2011-09-08 19:52:23 +02:00
|
|
|
/*
|
|
|
|
* Hotspot 2.0 AP ANQP processing
|
2013-07-23 20:25:21 +02:00
|
|
|
* Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
|
2011-09-08 19:52:23 +02:00
|
|
|
*
|
|
|
|
* 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);
|
2013-07-23 20:25:21 +02:00
|
|
|
u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
|
2013-03-17 15:03:42 +01:00
|
|
|
int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr,
|
|
|
|
u8 osu_method, const char *url);
|
2013-07-26 21:13:58 +02:00
|
|
|
int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd,
|
|
|
|
const u8 *addr,
|
|
|
|
const struct wpabuf *payload);
|
2011-09-08 19:52:23 +02:00
|
|
|
|
|
|
|
#endif /* HS20_H */
|