aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/external-tests/rust/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/external-tests/rust/src/main.rs')
-rw-r--r--contrib/external-tests/rust/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/external-tests/rust/src/main.rs b/contrib/external-tests/rust/src/main.rs
index fa468af..eccb987 100644
--- a/contrib/external-tests/rust/src/main.rs
+++ b/contrib/external-tests/rust/src/main.rs
@@ -19,7 +19,7 @@ fn memcpy(out: &mut [u8], data: &[u8]) {
}
fn main() {
- let send_addr = "test.wireguard.io:51820".to_socket_addrs().unwrap().next().unwrap();
+ let send_addr = "demo.wireguard.io:12913".to_socket_addrs().unwrap().next().unwrap();
let listen_addr = "0.0.0.0:0".to_socket_addrs().unwrap().next().unwrap();
let socket = UdpSocket::bind(listen_addr).unwrap();
let mut empty_payload = [0; 0];