00001 /* 00002 * Control interface for shared AP commands 00003 * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi> 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License version 2 as 00007 * published by the Free Software Foundation. 00008 * 00009 * Alternatively, this software may be distributed under the terms of BSD 00010 * license. 00011 * 00012 * See README and COPYING for more details. 00013 */ 00014 00015 #ifndef CTRL_IFACE_AP_H 00016 #define CTRL_IFACE_AP_H 00017 00018 int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd, 00019 char *buf, size_t buflen); 00020 int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr, 00021 char *buf, size_t buflen); 00022 int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr, 00023 char *buf, size_t buflen); 00024 00025 #endif /* CTRL_IFACE_AP_H */