From: Jouni Malinen Date: Thu, 23 Jan 2014 08:21:49 +0000 (+0200) Subject: Clear more configuration parameters to default on FLUSH X-Git-Tag: hostap_2_1~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea6e040c30881a92e88796f3b96bd7d757888b34;p=thirdparty%2Fhostap.git Clear more configuration parameters to default on FLUSH This makes it more convenient for test scripts to change parameters for a specific test case without having to separately clear them between each test case. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 85829005a..68157d23c 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -5315,6 +5315,9 @@ static void wpa_supplicant_ctrl_iface_flush(struct wpa_supplicant *wpa_s) wpa_supplicant_ctrl_iface_remove_network(wpa_s, "all"); wpa_supplicant_ctrl_iface_remove_cred(wpa_s, "all"); wpa_config_flush_blobs(wpa_s->conf); + wpa_s->conf->auto_interworking = 0; + wpa_s->conf->okc = 0; + wpa_s->conf->pmf = 0; wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME, 43200); wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD, 70);