|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Wi-Fi Protected Setup - attribute building
|
|
|
- * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
|
|
+ * Copyright (c) 2008-2016, Jouni Malinen <j@w1.fi>
|
|
|
*
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
* See README for more details.
|
|
@@ -298,7 +298,16 @@ int wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg)
|
|
|
auth_types &= ~WPS_AUTH_WPA;
|
|
|
auth_types &= ~WPS_AUTH_WPA2;
|
|
|
auth_types &= ~WPS_AUTH_SHARED;
|
|
|
- wpa_printf(MSG_DEBUG, "WPS: * Authentication Type Flags");
|
|
|
+#ifdef CONFIG_WPS_TESTING
|
|
|
+ if (wps_force_auth_types_in_use) {
|
|
|
+ wpa_printf(MSG_DEBUG,
|
|
|
+ "WPS: Testing - replace auth type 0x%x with 0x%x",
|
|
|
+ auth_types, wps_force_auth_types);
|
|
|
+ auth_types = wps_force_auth_types;
|
|
|
+ }
|
|
|
+#endif /* CONFIG_WPS_TESTING */
|
|
|
+ wpa_printf(MSG_DEBUG, "WPS: * Authentication Type Flags (0x%x)",
|
|
|
+ auth_types);
|
|
|
wpabuf_put_be16(msg, ATTR_AUTH_TYPE_FLAGS);
|
|
|
wpabuf_put_be16(msg, 2);
|
|
|
wpabuf_put_be16(msg, auth_types);
|
|
@@ -310,7 +319,16 @@ int wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg)
|
|
|
{
|
|
|
u16 encr_types = WPS_ENCR_TYPES;
|
|
|
encr_types &= ~WPS_ENCR_WEP;
|
|
|
- wpa_printf(MSG_DEBUG, "WPS: * Encryption Type Flags");
|
|
|
+#ifdef CONFIG_WPS_TESTING
|
|
|
+ if (wps_force_encr_types_in_use) {
|
|
|
+ wpa_printf(MSG_DEBUG,
|
|
|
+ "WPS: Testing - replace encr type 0x%x with 0x%x",
|
|
|
+ encr_types, wps_force_encr_types);
|
|
|
+ encr_types = wps_force_encr_types;
|
|
|
+ }
|
|
|
+#endif /* CONFIG_WPS_TESTING */
|
|
|
+ wpa_printf(MSG_DEBUG, "WPS: * Encryption Type Flags (0x%x)",
|
|
|
+ encr_types);
|
|
|
wpabuf_put_be16(msg, ATTR_ENCR_TYPE_FLAGS);
|
|
|
wpabuf_put_be16(msg, 2);
|
|
|
wpabuf_put_be16(msg, encr_types);
|