Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 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 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 6 | * This software may be distributed under the terms of the BSD license. |
| 7 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef AP_H |
| 11 | #define AP_H |
| 12 | |
| 13 | int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s, |
| 14 | struct wpa_ssid *ssid); |
| 15 | void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s); |
| 16 | void wpa_supplicant_ap_rx_eapol(struct wpa_supplicant *wpa_s, |
| 17 | const u8 *src_addr, const u8 *buf, size_t len); |
| 18 | int wpa_supplicant_ap_wps_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid, |
| 19 | const u8 *p2p_dev_addr); |
| 20 | int wpa_supplicant_ap_wps_pin(struct wpa_supplicant *wpa_s, const u8 *bssid, |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 21 | const char *pin, char *buf, size_t buflen, |
| 22 | int timeout); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 23 | int wpa_supplicant_ap_wps_cancel(struct wpa_supplicant *wpa_s); |
| 24 | void wpas_wps_ap_pin_disable(struct wpa_supplicant *wpa_s); |
| 25 | const char * wpas_wps_ap_pin_random(struct wpa_supplicant *wpa_s, int timeout); |
| 26 | const char * wpas_wps_ap_pin_get(struct wpa_supplicant *wpa_s); |
| 27 | int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin, |
| 28 | int timeout); |
| 29 | int ap_ctrl_iface_sta_first(struct wpa_supplicant *wpa_s, |
| 30 | char *buf, size_t buflen); |
| 31 | int ap_ctrl_iface_sta(struct wpa_supplicant *wpa_s, const char *txtaddr, |
| 32 | char *buf, size_t buflen); |
| 33 | int ap_ctrl_iface_sta_next(struct wpa_supplicant *wpa_s, const char *txtaddr, |
| 34 | char *buf, size_t buflen); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 35 | int ap_ctrl_iface_sta_deauthenticate(struct wpa_supplicant *wpa_s, |
| 36 | const char *txtaddr); |
| 37 | int ap_ctrl_iface_sta_disassociate(struct wpa_supplicant *wpa_s, |
| 38 | const char *txtaddr); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 39 | int ap_ctrl_iface_wpa_get_status(struct wpa_supplicant *wpa_s, char *buf, |
| 40 | size_t buflen, int verbose); |
| 41 | void ap_tx_status(void *ctx, const u8 *addr, |
| 42 | const u8 *buf, size_t len, int ack); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 43 | void ap_eapol_tx_status(void *ctx, const u8 *dst, |
| 44 | const u8 *data, size_t len, int ack); |
| 45 | void ap_client_poll_ok(void *ctx, const u8 *addr); |
| 46 | void ap_rx_from_unknown_sta(void *ctx, const u8 *addr, int wds); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 47 | void ap_mgmt_rx(void *ctx, struct rx_mgmt *rx_mgmt); |
| 48 | void ap_mgmt_tx_cb(void *ctx, const u8 *buf, size_t len, u16 stype, int ok); |
| 49 | int wpa_supplicant_ap_update_beacon(struct wpa_supplicant *wpa_s); |
| 50 | int wpa_supplicant_ap_mac_addr_filter(struct wpa_supplicant *wpa_s, |
| 51 | const u8 *addr); |
| 52 | void wpa_supplicant_ap_pwd_auth_fail(struct wpa_supplicant *wpa_s); |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 53 | int ap_switch_channel(struct wpa_supplicant *wpa_s, |
| 54 | struct csa_settings *settings); |
| 55 | int ap_ctrl_iface_chanswitch(struct wpa_supplicant *wpa_s, const char *txtaddr); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 56 | void wpas_ap_ch_switch(struct wpa_supplicant *wpa_s, int freq, int ht, |
Dmitry Shmidt | 04f534e | 2013-12-09 15:50:16 -0800 | [diff] [blame] | 57 | int offset, int width, int cf1, int cf2); |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 58 | struct wpabuf * wpas_ap_wps_nfc_config_token(struct wpa_supplicant *wpa_s, |
| 59 | int ndef); |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 60 | #ifdef CONFIG_AP |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 61 | struct wpabuf * wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, |
| 62 | int ndef); |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 63 | #else /* CONFIG_AP */ |
| 64 | static inline struct wpabuf * |
| 65 | wpas_ap_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, |
| 66 | int ndef) |
| 67 | { |
| 68 | return NULL; |
| 69 | } |
| 70 | #endif /* CONFIG_AP */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 71 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame^] | 72 | int wpas_ap_wps_nfc_report_handover(struct wpa_supplicant *wpa_s, |
| 73 | const struct wpabuf *req, |
| 74 | const struct wpabuf *sel); |
| 75 | int wpas_ap_wps_add_nfc_pw(struct wpa_supplicant *wpa_s, u16 pw_id, |
| 76 | const struct wpabuf *pw, const u8 *pubkey_hash); |
| 77 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 78 | #endif /* AP_H */ |