Use BSS table entry instead of raw scan result for connection
[mech_eap.git] / wpa_supplicant / wps_supplicant.h
1 /*
2  * wpa_supplicant / WPS integration
3  * Copyright (c) 2008-2009, 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 struct wpa_bss;
24
25 struct wps_new_ap_settings {
26         const char *ssid_hex;
27         const char *auth;
28         const char *encr;
29         const char *key_hex;
30 };
31
32 int wpas_wps_init(struct wpa_supplicant *wpa_s);
33 void wpas_wps_deinit(struct wpa_supplicant *wpa_s);
34 int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s);
35 enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid);
36 int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid);
37 int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
38                        const char *pin);
39 int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
40                        char *path, char *method, char *name);
41 int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
42                        const char *pin, struct wps_new_ap_settings *settings);
43 int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
44                             struct wpa_ssid *ssid, struct wpa_scan_res *bss);
45 int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
46                               struct wpa_ssid *ssid, struct wpa_scan_res *bss);
47 int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
48                               struct wpa_bss *selected, struct wpa_ssid *ssid);
49 void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s);
50 int wpas_wps_searching(struct wpa_supplicant *wpa_s);
51 int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *pos,
52                               char *end);
53 int wpas_wps_er_start(struct wpa_supplicant *wpa_s);
54 int wpas_wps_er_stop(struct wpa_supplicant *wpa_s);
55 int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const char *uuid,
56                         const char *pin);
57 int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid);
58 int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
59                       const char *pin);
60 int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s);
61
62 #else /* CONFIG_WPS */
63
64 static inline int wpas_wps_init(struct wpa_supplicant *wpa_s)
65 {
66         return 0;
67 }
68
69 static inline void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
70 {
71 }
72
73 static inline int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
74 {
75         return 0;
76 }
77
78 static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
79 {
80         return 0;
81 }
82
83 static inline int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
84                                           struct wpa_ssid *ssid,
85                                           struct wpa_scan_res *bss)
86 {
87         return -1;
88 }
89
90 static inline int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
91                                             struct wpa_ssid *ssid,
92                                             struct wpa_scan_res *bss)
93 {
94         return 0;
95 }
96
97 static inline int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
98                                             struct wpa_scan_res *selected,
99                                             struct wpa_ssid *ssid)
100 {
101         return 0;
102 }
103
104 static inline void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
105 {
106 }
107
108 static inline int wpas_wps_searching(struct wpa_supplicant *wpa_s)
109 {
110         return 0;
111 }
112
113 #endif /* CONFIG_WPS */
114
115 #endif /* WPS_SUPPLICANT_H */