Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Hotspot 2.0 AP ANQP processing |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
| 7 | */ |
| 8 | |
| 9 | #ifndef HS20_H |
| 10 | #define HS20_H |
| 11 | |
| 12 | struct hostapd_data; |
| 13 | |
| 14 | u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid); |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 15 | u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid); |
| 16 | int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, |
| 17 | u8 osu_method, const char *url); |
| 18 | int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd, |
| 19 | const u8 *addr, |
| 20 | const struct wpabuf *payload); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 21 | int hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, |
| 22 | const u8 *addr, const char *url); |
| 23 | void hs20_t_c_filtering(struct hostapd_data *hapd, struct sta_info *sta, |
| 24 | int enabled); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 25 | |
| 26 | #endif /* HS20_H */ |