From 807810329fd55ca6664a3f82fe32729428a89580 Mon Sep 17 00:00:00 2001 From: Adam Lock Date: Sun, 14 Apr 2019 19:48:54 +0100 Subject: [PATCH] Remove assertion requiring host to be ipv4 --- client/src/comms/tcp_transport.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/comms/tcp_transport.rs b/client/src/comms/tcp_transport.rs index 1e36af507..00b70e028 100644 --- a/client/src/comms/tcp_transport.rs +++ b/client/src/comms/tcp_transport.rs @@ -208,7 +208,7 @@ impl TcpTransport { } }; assert_eq!(addr.port(), port); - assert!(addr.is_ipv4()); + // The connection will be serviced on its own thread. When the thread terminates, the connection // has also terminated.