1214501Srpaulo/*
2214501Srpaulo * Control interface for shared AP commands
3214501Srpaulo * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5252726Srpaulo * This software may be distributed under the terms of the BSD license.
6252726Srpaulo * See README for more details.
7214501Srpaulo */
8214501Srpaulo
9214501Srpaulo#ifndef CTRL_IFACE_AP_H
10214501Srpaulo#define CTRL_IFACE_AP_H
11214501Srpaulo
12214501Srpauloint hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
13214501Srpaulo				 char *buf, size_t buflen);
14214501Srpauloint hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
15214501Srpaulo			   char *buf, size_t buflen);
16214501Srpauloint hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
17214501Srpaulo				char *buf, size_t buflen);
18252726Srpauloint hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
19252726Srpaulo				      const char *txtaddr);
20252726Srpauloint hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
21252726Srpaulo				    const char *txtaddr);
22214501Srpaulo
23214501Srpaulo#endif /* CTRL_IFACE_AP_H */
24