]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/wpas_glue.h
Add attribute for dwell time in QCA vendor scan
[thirdparty/hostap.git] / wpa_supplicant / wpas_glue.h
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant - Glue code to setup EAPOL and RSN modules
3 * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9#ifndef WPAS_GLUE_H
10#define WPAS_GLUE_H
11
81c57e22
DW
12enum wpa_ctrl_req_type;
13
6fc6879b
JM
14int wpa_supplicant_init_eapol(struct wpa_supplicant *wpa_s);
15int wpa_supplicant_init_wpa(struct wpa_supplicant *wpa_s);
16void wpa_supplicant_rsn_supp_set_config(struct wpa_supplicant *wpa_s,
17 struct wpa_ssid *ssid);
18
9ef1aaae
DW
19const char * wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field,
20 const char *default_txt,
21 const char **txt);
22
81c57e22
DW
23enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field);
24
a52410c2
JM
25void wpas_send_ctrl_req(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
26 const char *field_name, const char *txt);
27
6fc6879b 28#endif /* WPAS_GLUE_H */