|
@@ -419,28 +419,6 @@ static void sme_send_authentication(struct wpa_supplicant *wpa_s,
|
|
}
|
|
}
|
|
#endif /* CONFIG_P2P */
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
|
-#ifdef CONFIG_HS20
|
|
|
|
- if (is_hs20_network(wpa_s, ssid, bss)) {
|
|
|
|
- struct wpabuf *hs20;
|
|
|
|
- hs20 = wpabuf_alloc(20);
|
|
|
|
- if (hs20) {
|
|
|
|
- int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
|
|
|
|
- size_t len;
|
|
|
|
-
|
|
|
|
- wpas_hs20_add_indication(hs20, pps_mo_id);
|
|
|
|
- len = sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
- wpa_s->sme.assoc_req_ie_len;
|
|
|
|
- if (wpabuf_len(hs20) <= len) {
|
|
|
|
- os_memcpy(wpa_s->sme.assoc_req_ie +
|
|
|
|
- wpa_s->sme.assoc_req_ie_len,
|
|
|
|
- wpabuf_head(hs20), wpabuf_len(hs20));
|
|
|
|
- wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
|
|
|
|
- }
|
|
|
|
- wpabuf_free(hs20);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-#endif /* CONFIG_HS20 */
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_FST
|
|
#ifdef CONFIG_FST
|
|
if (wpa_s->fst_ies) {
|
|
if (wpa_s->fst_ies) {
|
|
int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
|
|
int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
|
|
@@ -486,6 +464,29 @@ static void sme_send_authentication(struct wpa_supplicant *wpa_s,
|
|
os_memcpy(pos, ext_capab, ext_capab_len);
|
|
os_memcpy(pos, ext_capab, ext_capab_len);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#ifdef CONFIG_HS20
|
|
|
|
+ if (is_hs20_network(wpa_s, ssid, bss)) {
|
|
|
|
+ struct wpabuf *hs20;
|
|
|
|
+
|
|
|
|
+ hs20 = wpabuf_alloc(20);
|
|
|
|
+ if (hs20) {
|
|
|
|
+ int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
|
|
|
|
+ size_t len;
|
|
|
|
+
|
|
|
|
+ wpas_hs20_add_indication(hs20, pps_mo_id);
|
|
|
|
+ len = sizeof(wpa_s->sme.assoc_req_ie) -
|
|
|
|
+ wpa_s->sme.assoc_req_ie_len;
|
|
|
|
+ if (wpabuf_len(hs20) <= len) {
|
|
|
|
+ os_memcpy(wpa_s->sme.assoc_req_ie +
|
|
|
|
+ wpa_s->sme.assoc_req_ie_len,
|
|
|
|
+ wpabuf_head(hs20), wpabuf_len(hs20));
|
|
|
|
+ wpa_s->sme.assoc_req_ie_len += wpabuf_len(hs20);
|
|
|
|
+ }
|
|
|
|
+ wpabuf_free(hs20);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#endif /* CONFIG_HS20 */
|
|
|
|
+
|
|
if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
|
|
if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
|
|
struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
|
|
struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
|
|
size_t len;
|
|
size_t len;
|