[Modify] Use it

This commit is contained in:
sta 2016-10-05 15:26:21 +09:00
parent 077b5d3063
commit 215574b9ab

View File

@ -630,12 +630,9 @@ namespace WebSocketSharp.Server
return; return;
} }
if (_dnsStyle) { if (!checkHostName (uri.DnsSafeHost)) {
var hostname = uri.DnsSafeHost; context.Close (HttpStatusCode.NotFound);
if (Uri.CheckHostName (hostname) == UriHostNameType.Dns && hostname != _hostname) { return;
context.Close (HttpStatusCode.NotFound);
return;
}
} }
WebSocketServiceHost host; WebSocketServiceHost host;