]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/ap.h
Move STA list ctrl_iface handlers to a separate file
[thirdparty/hostap.git] / wpa_supplicant / ap.h
CommitLineData
1f1b62a0
JM
1/*
2 * WPA Supplicant - Basic AP mode support routines
3 * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
4 * Copyright (c) 2009, Atheros Communications
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Alternatively, this software may be distributed under the terms of BSD
11 * license.
12 *
13 * See README and COPYING for more details.
14 */
15
16#ifndef AP_H
17#define AP_H
18
2d5b792d
JM
19int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
20 struct wpa_ssid *ssid);
21void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s);
db149ac9
JM
22void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
23 const u8 *src_addr, const u8 *buf, size_t len);
3ec97afe
JM
24int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid);
25int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
26 const char *pin, char *buf, size_t buflen);
1f1b62a0
JM
27
28#endif /* AP_H */