ctrl_iface_ap.h revision 285830
1178476Sjb/*
2178476Sjb * Control interface for shared AP commands
3178476Sjb * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4178476Sjb *
5178476Sjb * This software may be distributed under the terms of the BSD license.
6178476Sjb * See README for more details.
7178476Sjb */
8178476Sjb
9178476Sjb#ifndef CTRL_IFACE_AP_H
10178476Sjb#define CTRL_IFACE_AP_H
11178476Sjb
12178476Sjbint hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
13178476Sjb				 char *buf, size_t buflen);
14178476Sjbint hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
15178476Sjb			   char *buf, size_t buflen);
16178476Sjbint hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
17178476Sjb				char *buf, size_t buflen);
18178476Sjbint hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
19178476Sjb				      const char *txtaddr);
20178476Sjbint hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
21178476Sjb				    const char *txtaddr);
22178476Sjb
23178476Sjb#endif /* CTRL_IFACE_AP_H */
24178476Sjb