ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/vendor/wpa/dist/src/ap/ctrl_iface_ap.h
Revision: 9639
Committed: Sun Oct 22 18:11:47 2017 UTC (6 years, 6 months ago) by laffer1
Content type: text/plain
File size: 791 byte(s)
Log Message:
wpa supplicant/hostapd 2.0

File Contents

# Content
1 /*
2 * Control interface for shared AP commands
3 * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9 #ifndef CTRL_IFACE_AP_H
10 #define CTRL_IFACE_AP_H
11
12 int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
13 char *buf, size_t buflen);
14 int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
15 char *buf, size_t buflen);
16 int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
17 char *buf, size_t buflen);
18 int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
19 const char *txtaddr);
20 int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
21 const char *txtaddr);
22
23 #endif /* CTRL_IFACE_AP_H */