ctrl_iface_ap.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Control interface for shared AP commands
  3. * Copyright (c) 2004-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef CTRL_IFACE_AP_H
  9. #define CTRL_IFACE_AP_H
  10. int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
  11. char *buf, size_t buflen);
  12. int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
  13. char *buf, size_t buflen);
  14. int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
  15. char *buf, size_t buflen);
  16. int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
  17. const char *txtaddr);
  18. int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
  19. const char *txtaddr);
  20. int hostapd_ctrl_iface_signature(struct hostapd_data *hapd,
  21. const char *txtaddr,
  22. char *buf, size_t buflen);
  23. int hostapd_ctrl_iface_poll_sta(struct hostapd_data *hapd,
  24. const char *txtaddr);
  25. int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
  26. size_t buflen);
  27. int hostapd_parse_csa_settings(const char *pos,
  28. struct csa_settings *settings);
  29. int hostapd_ctrl_iface_stop_ap(struct hostapd_data *hapd);
  30. int hostapd_ctrl_iface_pmksa_list(struct hostapd_data *hapd, char *buf,
  31. size_t len);
  32. void hostapd_ctrl_iface_pmksa_flush(struct hostapd_data *hapd);
  33. #endif /* CTRL_IFACE_AP_H */