hs20_supplicant.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
  3. *
  4. * This software may be distributed under the terms of the BSD license.
  5. * See README for more details.
  6. */
  7. #ifndef HS20_SUPPLICANT_H
  8. #define HS20_SUPPLICANT_H
  9. void wpas_hs20_add_indication(struct wpabuf *buf, int pps_mo_id);
  10. int hs20_anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst, u32 stypes,
  11. const u8 *payload, size_t payload_len, int inmem);
  12. struct wpabuf * hs20_build_anqp_req(u32 stypes, const u8 *payload,
  13. size_t payload_len);
  14. void hs20_put_anqp_req(u32 stypes, const u8 *payload, size_t payload_len,
  15. struct wpabuf *buf);
  16. void hs20_parse_rx_hs20_anqp_resp(struct wpa_supplicant *wpa_s,
  17. struct wpa_bss *bss, const u8 *sa,
  18. const u8 *data, size_t slen, u8 dialog_token);
  19. int is_hs20_network(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  20. struct wpa_bss *bss);
  21. int hs20_get_pps_mo_id(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid);
  22. void hs20_notify_parse_done(struct wpa_supplicant *wpa_s);
  23. void hs20_rx_subscription_remediation(struct wpa_supplicant *wpa_s,
  24. const char *url, u8 osu_method);
  25. void hs20_rx_deauth_imminent_notice(struct wpa_supplicant *wpa_s, u8 code,
  26. u16 reauth_delay, const char *url);
  27. void hs20_free_osu_prov(struct wpa_supplicant *wpa_s);
  28. void hs20_next_osu_icon(struct wpa_supplicant *wpa_s);
  29. void hs20_osu_icon_fetch(struct wpa_supplicant *wpa_s);
  30. int hs20_fetch_osu(struct wpa_supplicant *wpa_s);
  31. void hs20_cancel_fetch_osu(struct wpa_supplicant *wpa_s);
  32. void hs20_icon_fetch_failed(struct wpa_supplicant *wpa_s);
  33. void hs20_start_osu_scan(struct wpa_supplicant *wpa_s);
  34. void hs20_init(struct wpa_supplicant *wpa_s);
  35. void hs20_deinit(struct wpa_supplicant *wpa_s);
  36. int hs20_get_icon(struct wpa_supplicant *wpa_s, const u8 *bssid,
  37. const char *file_name, size_t offset, size_t size,
  38. char *reply, size_t buf_len);
  39. int hs20_del_icon(struct wpa_supplicant *wpa_s, const u8 *bssid,
  40. const char *file_name);
  41. #endif /* HS20_SUPPLICANT_H */