Merge branch 'vendor/ZLIB'
[dragonfly.git] / contrib / hostapd / hostapd / wps_hostapd.h
1 /*
2  * hostapd / 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_HOSTAPD_H
16 #define WPS_HOSTAPD_H
17
18 #ifdef CONFIG_WPS
19
20 int hostapd_init_wps(struct hostapd_data *hapd,
21                      struct hostapd_bss_config *conf);
22 void hostapd_deinit_wps(struct hostapd_data *hapd);
23 int hostapd_wps_add_pin(struct hostapd_data *hapd, const char *uuid,
24                         const char *pin, int timeout);
25 int hostapd_wps_button_pushed(struct hostapd_data *hapd);
26 void hostapd_wps_probe_req_rx(struct hostapd_data *hapd, const u8 *addr,
27                               const u8 *ie, size_t ie_len);
28
29 #else /* CONFIG_WPS */
30
31 static inline int hostapd_init_wps(struct hostapd_data *hapd,
32                                    struct hostapd_bss_config *conf)
33 {
34         return 0;
35 }
36
37 static inline void hostapd_deinit_wps(struct hostapd_data *hapd)
38 {
39 }
40
41 static inline void hostapd_wps_probe_req_rx(struct hostapd_data *hapd,
42                                             const u8 *addr,
43                                             const u8 *ie, size_t ie_len)
44 {
45 }
46 #endif /* CONFIG_WPS */
47
48 #endif /* WPS_HOSTAPD_H */