From 58410bf0161485b10ba58e805b6cc1adef823666 Mon Sep 17 00:00:00 2001 From: Cesar Blum Silveira Date: Wed, 1 Jun 2016 15:53:32 -0700 Subject: [PATCH] Fix Travis build. --- .../IPv6SupportedConditionAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Server.Kestrel.FunctionalTests/IPv6SupportedConditionAttribute.cs b/test/Microsoft.AspNetCore.Server.Kestrel.FunctionalTests/IPv6SupportedConditionAttribute.cs index 8889c3b2d5..ca2f2bc6b9 100644 --- a/test/Microsoft.AspNetCore.Server.Kestrel.FunctionalTests/IPv6SupportedConditionAttribute.cs +++ b/test/Microsoft.AspNetCore.Server.Kestrel.FunctionalTests/IPv6SupportedConditionAttribute.cs @@ -35,7 +35,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests { using (var socket = new Socket(AddressFamily.InterNetworkV6, SocketType.Stream, ProtocolType.Tcp)) { - socket.Bind(new IPEndPoint(IPAddress.IPv6Any, 0)); + socket.Bind(new IPEndPoint(IPAddress.IPv6Loopback, 0)); return true; } }