Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Interworking (IEEE 802.11u) |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2011-2012, Qualcomm Atheros |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef INTERWORKING_H |
| 10 | #define INTERWORKING_H |
| 11 | |
| 12 | enum gas_query_result; |
| 13 | |
| 14 | int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst, |
| 15 | u16 info_ids[], size_t num_ids); |
| 16 | void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token, |
| 17 | enum gas_query_result result, |
| 18 | const struct wpabuf *adv_proto, |
| 19 | const struct wpabuf *resp, u16 status_code); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame^] | 20 | int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst, |
| 21 | const struct wpabuf *adv_proto, |
| 22 | const struct wpabuf *query); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 23 | int interworking_fetch_anqp(struct wpa_supplicant *wpa_s); |
| 24 | void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s); |
| 25 | int interworking_select(struct wpa_supplicant *wpa_s, int auto_select); |
| 26 | int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame^] | 27 | void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 28 | |
| 29 | #endif /* INTERWORKING_H */ |