blob: 0e4286d65c3f98dc2f65cd04c70fc6435d6431e1 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * Control interface for shared AP commands
3 * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
4 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef CTRL_IFACE_AP_H
10#define CTRL_IFACE_AP_H
11
12int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
13 char *buf, size_t buflen);
14int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
15 char *buf, size_t buflen);
16int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
17 char *buf, size_t buflen);
18
19#endif /* CTRL_IFACE_AP_H */