1e5b75505Sopenharmony_ci/*
2e5b75505Sopenharmony_ci * Hotspot 2.0 AP ANQP processing
3e5b75505Sopenharmony_ci * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
4e5b75505Sopenharmony_ci *
5e5b75505Sopenharmony_ci * This software may be distributed under the terms of the BSD license.
6e5b75505Sopenharmony_ci * See README for more details.
7e5b75505Sopenharmony_ci */
8e5b75505Sopenharmony_ci
9e5b75505Sopenharmony_ci#ifndef HS20_H
10e5b75505Sopenharmony_ci#define HS20_H
11e5b75505Sopenharmony_ci
12e5b75505Sopenharmony_cistruct hostapd_data;
13e5b75505Sopenharmony_ci
14e5b75505Sopenharmony_ciu8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
15e5b75505Sopenharmony_ciu8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
16e5b75505Sopenharmony_ciint hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr,
17e5b75505Sopenharmony_ci			       u8 osu_method, const char *url);
18e5b75505Sopenharmony_ciint hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd,
19e5b75505Sopenharmony_ci					  const u8 *addr,
20e5b75505Sopenharmony_ci					  const struct wpabuf *payload);
21e5b75505Sopenharmony_ciint hs20_send_wnm_notification_t_c(struct hostapd_data *hapd,
22e5b75505Sopenharmony_ci				   const u8 *addr, const char *url);
23e5b75505Sopenharmony_civoid hs20_t_c_filtering(struct hostapd_data *hapd, struct sta_info *sta,
24e5b75505Sopenharmony_ci			int enabled);
25e5b75505Sopenharmony_ci
26e5b75505Sopenharmony_ci#endif /* HS20_H */
27