]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/interworking.h
Add attribute for dwell time in QCA vendor scan
[thirdparty/hostap.git] / wpa_supplicant / interworking.h
CommitLineData
afc064fe
JM
1/*
2 * Interworking (IEEE 802.11u)
b1f12296 3 * Copyright (c) 2011-2012, Qualcomm Atheros
afc064fe 4 *
e22d4d95
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
afc064fe
JM
7 */
8
9#ifndef INTERWORKING_H
10#define INTERWORKING_H
11
12enum gas_query_result;
13
14int anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst,
8f479174 15 u16 info_ids[], size_t num_ids, u32 subtypes,
2316cb35 16 u32 mbo_subtypes);
afc064fe
JM
17void anqp_resp_cb(void *ctx, const u8 *dst, u8 dialog_token,
18 enum gas_query_result result,
19 const struct wpabuf *adv_proto,
20 const struct wpabuf *resp, u16 status_code);
b1f12296
JM
21int gas_send_request(struct wpa_supplicant *wpa_s, const u8 *dst,
22 const struct wpabuf *adv_proto,
23 const struct wpabuf *query);
afc064fe
JM
24int interworking_fetch_anqp(struct wpa_supplicant *wpa_s);
25void interworking_stop_fetch_anqp(struct wpa_supplicant *wpa_s);
356d1488
JM
26int interworking_select(struct wpa_supplicant *wpa_s, int auto_select,
27 int *freqs);
f91a512f
JM
28int interworking_connect(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
29 int only_add);
4d5bda5f 30void interworking_start_fetch_anqp(struct wpa_supplicant *wpa_s);
e99b4f3a
JM
31int interworking_home_sp_cred(struct wpa_supplicant *wpa_s,
32 struct wpa_cred *cred,
33 struct wpabuf *domain_names);
aa26ba68
JM
34int domain_name_list_contains(struct wpabuf *domain_names,
35 const char *domain, int exact_match);
afc064fe
JM
36
37#endif /* INTERWORKING_H */