WindowsPinger should work for win64 now (using jna)

This commit is contained in:
Anton Keks 2013-02-01 00:57:53 +02:00
parent b0486afb8d
commit 24cef4dce9

View File

@ -42,7 +42,7 @@ public class ScannerConfig {
maxThreads = preferences.getInt("maxThreads", Platform.CRIPPLED_WINDOWS ? 10 : 100);
threadDelay = preferences.getInt("threadDelay", 20);
scanDeadHosts = preferences.getBoolean("scanDeadHosts", false);
selectedPinger = preferences.get("selectedPinger", Platform.WINDOWS && !Platform.ARCH_64 ? "pinger.windows" : "pinger.icmp");
selectedPinger = preferences.get("selectedPinger", Platform.WINDOWS ? "pinger.windows" : "pinger.icmp");
pingTimeout = preferences.getInt("pingTimeout", 2000);
pingCount = preferences.getInt("pingCount", 3);
skipBroadcastAddresses = preferences.getBoolean("skipBroadcastAddresses", true);