1214501Srpaulo/*
2214501Srpaulo * Control interface for shared AP commands
3214501Srpaulo * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5214501Srpaulo * This program is free software; you can redistribute it and/or modify
6214501Srpaulo * it under the terms of the GNU General Public License version 2 as
7214501Srpaulo * published by the Free Software Foundation.
8214501Srpaulo *
9214501Srpaulo * Alternatively, this software may be distributed under the terms of BSD
10214501Srpaulo * license.
11214501Srpaulo *
12214501Srpaulo * See README and COPYING for more details.
13214501Srpaulo */
14214501Srpaulo
15214501Srpaulo#ifndef CTRL_IFACE_AP_H
16214501Srpaulo#define CTRL_IFACE_AP_H
17214501Srpaulo
18214501Srpauloint hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
19214501Srpaulo				 char *buf, size_t buflen);
20214501Srpauloint hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
21214501Srpaulo			   char *buf, size_t buflen);
22214501Srpauloint hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
23214501Srpaulo				char *buf, size_t buflen);
24214501Srpaulo
25214501Srpaulo#endif /* CTRL_IFACE_AP_H */
26