hs20.h 650 B

12345678910111213141516171819202122
  1. /*
  2. * Hotspot 2.0 AP ANQP processing
  3. * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef HS20_H
  9. #define HS20_H
  10. struct hostapd_data;
  11. u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
  12. u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
  13. int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr,
  14. u8 osu_method, const char *url);
  15. int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd,
  16. const u8 *addr,
  17. const struct wpabuf *payload);
  18. #endif /* HS20_H */