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 software may be distributed under the terms of the BSD license.
7 * See README for more details.
8 */
9
10#ifndef AP_H
11#define AP_H
12
13int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
14			     struct wpa_ssid *ssid);
15void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s);
16void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s,
17				const u8 *src_addr, const u8 *buf, size_t len);
18int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
19			      const u8 *p2p_dev_addr);
20int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
21			      const char *pin, char *buf, size_t buflen);
22int wpa_supplicant_ap_wps_cancel(struct wpa_supplicant *wpa_s);
23void wpas_wps_ap_pin_disable(struct wpa_supplicant *wpa_s);
24const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout);
25const char * wpas_wps_ap_pin_get(struct wpa_supplicant *wpa_s);
26int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin,
27			int timeout);
28int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s,
29			    char *buf, size_t buflen);
30int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr,
31		      char *buf, size_t buflen);
32int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr,
33			   char *buf, size_t buflen);
34int ap_ctrl_iface_sta_deauthenticate(struct wpa_supplicant *wpa_s,
35				     const char *txtaddr);
36int ap_ctrl_iface_sta_disassociate(struct wpa_supplicant *wpa_s,
37				   const char *txtaddr);
38int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf,
39				 size_t buflen, int verbose);
40void ap_tx_status(void *ctx, const u8 *addr,
41		  const u8 *buf, size_t len, int ack);
42void ap_eapol_tx_status(void *ctx, const u8 *dst,
43			const u8 *data, size_t len, int ack);
44void ap_client_poll_ok(void *ctx, const u8 *addr);
45void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds);
46void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt);
47void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok);
48int wpa_supplicant_ap_update_beacon(struct wpa_supplicant *wpa_s);
49int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s,
50				      const u8 *addr);
51void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s);
52void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht,
53		       int offset);
54
55#endif /* AP_H */
56