Modified a few for EndPointManager.cs

This commit is contained in:
sta 2015-02-26 17:36:07 +09:00
parent 47e859f57f
commit cd10c21112

View File

@ -94,7 +94,7 @@ namespace WebSocketSharp.Net
private static IPAddress convertToAddress (string hostName)
{
if (hostName == "*")
if (hostName == "*" || hostName == "+")
return IPAddress.Any;
IPAddress addr;