Fix due to the modified WebSocket.cs

This commit is contained in:
sta
2012-10-13 17:38:19 +09:00
parent 97ecfc5d2b
commit 33cddb9fa2
24 changed files with 68 additions and 47 deletions

View File

@@ -151,7 +151,7 @@ namespace WebSocketSharp.Server {
var uri = url.ToUri();
string msg;
if (!uri.IsValidWsUri(out msg))
if (!uri.IsValidWebSocketUri(out msg))
throw new ArgumentException(msg, "url");
var scheme = uri.Scheme;