From aad91ae6791910315a929cc3f1973e96d33bcd1c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 16 Jul 2017 16:12:20 +0200 Subject: global: wireguard.io --> wireguard.com Due to concerns with the .io TLD, we are switching to using wireguard.com instead. Signed-off-by: Jason A. Donenfeld --- contrib/external-tests/go/main.go | 2 +- contrib/external-tests/haskell/src/Main.hs | 2 +- contrib/external-tests/rust/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/external-tests') diff --git a/contrib/external-tests/go/main.go b/contrib/external-tests/go/main.go index e3627f3..9b60636 100644 --- a/contrib/external-tests/go/main.go +++ b/contrib/external-tests/go/main.go @@ -51,7 +51,7 @@ func main() { StaticKeypair: noise.DHKey{Private: ourPrivate, Public: ourPublic}, PeerStatic: theirPublic, }) - conn, err := net.Dial("udp", "demo.wireguard.io:12913") + conn, err := net.Dial("udp", "demo.wireguard.com:12913") if err != nil { log.Fatalf("error dialing udp socket: %s", err) } diff --git a/contrib/external-tests/haskell/src/Main.hs b/contrib/external-tests/haskell/src/Main.hs index b0b7503..7863829 100644 --- a/contrib/external-tests/haskell/src/Main.hs +++ b/contrib/external-tests/haskell/src/Main.hs @@ -57,7 +57,7 @@ unsafeMessage write mpsk msg ns = case operation msg ns of main :: IO () main = do - let ip = "demo.wireguard.io" + let ip = "demo.wireguard.com" port = "12913" myKeyB64 = "WAmgVYXkbT2bCtdcDwolI88/iVi/aV3/PHcUBTQSYmo=" -- private key serverKeyB64 = "qRCwZSKInrMAq5sepfCdaCsRJaoLe5jhtzfiw7CjbwM=" -- public key diff --git a/contrib/external-tests/rust/src/main.rs b/contrib/external-tests/rust/src/main.rs index 9fb0f5a..fdd220e 100644 --- a/contrib/external-tests/rust/src/main.rs +++ b/contrib/external-tests/rust/src/main.rs @@ -17,7 +17,7 @@ use pnet::packet::icmp::{MutableIcmpPacket, IcmpTypes, echo_reply, echo_request, use std::net::*; use std::str::FromStr; -static TEST_SERVER: &'static str = "demo.wireguard.io:12913"; +static TEST_SERVER: &'static str = "demo.wireguard.com:12913"; fn memcpy(out: &mut [u8], data: &[u8]) { out[..data.len()].copy_from_slice(data); -- cgit v1.2.3-59-g8ed1b