|
@@ -3563,6 +3563,9 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|
bss->own_ie_override = tmp;
|
|
bss->own_ie_override = tmp;
|
|
} else if (os_strcmp(buf, "sae_reflection_attack") == 0) {
|
|
} else if (os_strcmp(buf, "sae_reflection_attack") == 0) {
|
|
bss->sae_reflection_attack = atoi(pos);
|
|
bss->sae_reflection_attack = atoi(pos);
|
|
|
|
+ } else if (os_strcmp(buf, "sae_commit_override") == 0) {
|
|
|
|
+ wpabuf_free(bss->sae_commit_override);
|
|
|
|
+ bss->sae_commit_override = wpabuf_parse_bin(pos);
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
} else if (os_strcmp(buf, "vendor_elements") == 0) {
|
|
} else if (os_strcmp(buf, "vendor_elements") == 0) {
|
|
if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
|
|
if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
|