WPS: Add UFD support (USBA out-of-band mechanism)
[mech_eap.git] / wpa_supplicant / wps_supplicant.h
1 /*
2  * wpa_supplicant / WPS integration
3  * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef WPS_SUPPLICANT_H
16 #define WPS_SUPPLICANT_H
17
18 #ifdef CONFIG_WPS
19
20 #include "wps/wps.h"
21 #include "wps/wps_defs.h"
22
23 int wpas_wps_init(struct wpa_supplicant *wpa_s);
24 void wpas_wps_deinit(struct wpa_supplicant *wpa_s);
25 int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s);
26 enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid);
27 int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid);
28 int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
29                        const char *pin);
30 int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
31                        char *path, char *method);
32 int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
33                        const char *pin);
34 int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
35                             struct wpa_ssid *ssid, struct wpa_scan_res *bss);
36 int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
37                               struct wpa_ssid *ssid, struct wpa_scan_res *bss);
38 int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
39                               struct wpa_scan_res *selected,
40                               struct wpa_ssid *ssid);
41 void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s);
42 int wpas_wps_searching(struct wpa_supplicant *wpa_s);
43
44 #else /* CONFIG_WPS */
45
46 static inline int wpas_wps_init(struct wpa_supplicant *wpa_s)
47 {
48         return 0;
49 }
50
51 static inline void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
52 {
53 }
54
55 static inline int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
56 {
57         return 0;
58 }
59
60 static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
61 {
62         return 0;
63 }
64
65 static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
66                                           struct wpa_ssid *ssid,
67                                           struct wpa_scan_res *bss)
68 {
69         return -1;
70 }
71
72 static inline int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
73                                             struct wpa_ssid *ssid,
74                                             struct wpa_scan_res *bss)
75 {
76         return 0;
77 }
78
79 static inline int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
80                                             struct wpa_scan_res *selected,
81                                             struct wpa_ssid *ssid)
82 {
83         return 0;
84 }
85
86 static inline void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
87 {
88 }
89
90 static inline int wpas_wps_searching(struct wpa_supplicant *wpa_s)
91 {
92         return 0;
93 }
94
95 #endif /* CONFIG_WPS */
96
97 #endif /* WPS_SUPPLICANT_H */