diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2012-11-02 10:08:11 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-02-25 23:24:22 (GMT) |
commit | f9cd147d6b4718b03d8f3110e5dcaa56fe57902b (patch) | |
tree | d33b72eb1961bb2f3c27fabde5ce102e506f8487 /wpa_supplicant/hs20_supplicant.h | |
parent | bc00053c9d94208702ed5b75a729f7706d0051b3 (diff) | |
download | hostap-f9cd147d6b4718b03d8f3110e5dcaa56fe57902b.zip hostap-f9cd147d6b4718b03d8f3110e5dcaa56fe57902b.tar.gz hostap-f9cd147d6b4718b03d8f3110e5dcaa56fe57902b.tar.bz2 |
HS 2.0R2: Update Indication element to Release 2
The HS 2.0 Indication element from wpa_supplicant now includes the
release number field and wpa_supplicant shows the release number of the
AP in STATUS command (hs20=1 replaced with hs20=<release>).
The new update_identifier field in the cred block can now be used to
configure the PPS MO ID so that wpa_supplicant adds it to the Indication
element in Association Request frames.
Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant/hs20_supplicant.h')
-rw-r--r-- | wpa_supplicant/hs20_supplicant.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wpa_supplicant/hs20_supplicant.h b/wpa_supplicant/hs20_supplicant.h index 1c8481b..7f62a15 100644 --- a/wpa_supplicant/hs20_supplicant.h +++ b/wpa_supplicant/hs20_supplicant.h @@ -8,7 +8,7 @@ #ifndef HS20_SUPPLICANT_H #define HS20_SUPPLICANT_H -void wpas_hs20_add_indication(struct wpabuf *buf); +void wpas_hs20_add_indication(struct wpabuf *buf, int pps_mo_id); int hs20_anqp_send_req(struct wpa_supplicant *wpa_s, const u8 *dst, u32 stypes, const u8 *payload, size_t payload_len); @@ -18,5 +18,6 @@ void hs20_parse_rx_hs20_anqp_resp(struct wpa_supplicant *wpa_s, const u8 *sa, const u8 *data, size_t slen); int is_hs20_network(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, struct wpa_bss *bss); +int hs20_get_pps_mo_id(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid); #endif /* HS20_SUPPLICANT_H */ |