diff options
author | Jouni Malinen <j@w1.fi> | 2013-05-05 13:29:21 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2013-05-05 13:29:21 (GMT) |
commit | 55a2df4389cf5b712ac4c96ee0fb0a153b97da7f (patch) | |
tree | 56b737123573f5ee314809646854095fb046655c /wpa_supplicant/hs20_supplicant.h | |
parent | ad0685e901e0a4610128ce173fe737c4390af15c (diff) | |
download | hostap-55a2df4389cf5b712ac4c96ee0fb0a153b97da7f.zip hostap-55a2df4389cf5b712ac4c96ee0fb0a153b97da7f.tar.gz hostap-55a2df4389cf5b712ac4c96ee0fb0a153b97da7f.tar.bz2 |
HS 2.0: Include HS 2.0 Indication element only for HS 2.0 association
The Hotspot 2.0 specification seems to mandate this element to be
included in all (Re)Association Request frames if the station is Hotspot
2.0 capable. However, that results in conflicts with other requirements
like no TKIP use when this element is present. The design is really
supposed to include the indication element only for Hotspot 2.0
associations regardless of what the current specification implies.
Remove the HS 2.0 Indication element from (Re)Association Request frame
whenever the connection is not for Hotspot 2.0 purposes.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'wpa_supplicant/hs20_supplicant.h')
-rw-r--r-- | wpa_supplicant/hs20_supplicant.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wpa_supplicant/hs20_supplicant.h b/wpa_supplicant/hs20_supplicant.h index 6eb3926..1c8481b 100644 --- a/wpa_supplicant/hs20_supplicant.h +++ b/wpa_supplicant/hs20_supplicant.h @@ -16,5 +16,7 @@ struct wpabuf * hs20_build_anqp_req(u32 stypes, const u8 *payload, size_t payload_len); 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); #endif /* HS20_SUPPLICANT_H */ |