From cd10c21112ddd89b1a1b1d545d07d22c8f9b3887 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 26 Feb 2015 17:36:07 +0900 Subject: [PATCH] Modified a few for EndPointManager.cs --- websocket-sharp/Net/EndPointManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Net/EndPointManager.cs b/websocket-sharp/Net/EndPointManager.cs index f479e051..e784eaa9 100644 --- a/websocket-sharp/Net/EndPointManager.cs +++ b/websocket-sharp/Net/EndPointManager.cs @@ -94,7 +94,7 @@ namespace WebSocketSharp.Net private static IPAddress convertToAddress (string hostName) { - if (hostName == "*") + if (hostName == "*" || hostName == "+") return IPAddress.Any; IPAddress addr;