diff options
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index a1fe3d0..768ec75 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,8 +34,8 @@ const MONITOR_INTERVAL: Duration = Duration::from_secs(300); const MONITOR_TIMEOUT: Duration = Duration::from_secs(3600); const TCP_TIMEOUT: Duration = Duration::from_secs(8); const POLL_INTERVAL: Duration = Duration::from_millis(500); -const PING_V4: &str = "ipv4.google.com:80"; -const PING_V6: &str = "ipv6.google.com:80"; +const PING_V4: &str = "1.1.1.1:80"; +const PING_V6: &str = "[2606:4700:4700::1111]:80"; fn main() { println!("[info] init"); |