Parcourir la source

Added debug_timestamp option to Windows registry

Jouni Malinen il y a 16 ans
Parent
commit
99a10f8d2c
2 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 7 0
      wpa_supplicant/main_winsvc.c
  2. 1 0
      wpa_supplicant/win_example.reg

+ 7 - 0
wpa_supplicant/main_winsvc.c

@@ -161,6 +161,13 @@ static int wpa_supplicant_thread(void)
 		params.wpa_debug_show_keys = val;
 	}
 
+	buflen = sizeof(val);
+	ret = RegQueryValueEx(hk, TEXT("debug_timestamp"), NULL, NULL,
+			      (LPBYTE) &val, &buflen);
+	if (ret == ERROR_SUCCESS && buflen == sizeof(val)) {
+		params.wpa_debug_timestamp = val;
+	}
+
 	buflen = sizeof(val);
 	ret = RegQueryValueEx(hk, TEXT("debug_use_file"), NULL, NULL,
 			      (LPBYTE) &val, &buflen);

+ 1 - 0
wpa_supplicant/win_example.reg

@@ -3,6 +3,7 @@ REGEDIT4
 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant]
 "debug_level"=dword:00000000
 "debug_show_keys"=dword:00000001
+"debug_timestamp"=dword:00000000
 "debug_use_file"=dword:00000000
 
 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant\configs]