|
@@ -437,6 +437,8 @@ static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s,
|
|
|
#endif /* CONFIG_AP */
|
|
|
} else if (os_strcasecmp(cmd, "extra_roc_dur") == 0) {
|
|
|
wpa_s->extra_roc_dur = atoi(value);
|
|
|
+ } else if (os_strcasecmp(cmd, "test_failure") == 0) {
|
|
|
+ wpa_s->test_failure = atoi(value);
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
#ifndef CONFIG_NO_CONFIG_BLOBS
|
|
|
} else if (os_strcmp(cmd, "blob") == 0) {
|
|
@@ -6195,6 +6197,7 @@ static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s)
|
|
|
wpa_s->ext_eapol_frame_io = 0;
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
wpa_s->extra_roc_dur = 0;
|
|
|
+ wpa_s->test_failure = WPAS_TEST_FAILURE_NONE;
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
|
|
|
wpa_s->disconnected = 0;
|