diff --git a/Example2/Program.cs b/Example2/Program.cs index d552ce81..81ef2642 100644 --- a/Example2/Program.cs +++ b/Example2/Program.cs @@ -13,8 +13,8 @@ namespace Example2 { // Create a new instance of the WebSocketServer class. // - // If you would like to provide the secure connection, you should create the instance with - // the 'secure' parameter set to true, or the wss scheme WebSocket URL. + // If you would like to provide the secure connection, you should create a new instance with + // the 'secure' parameter set to true, or a wss scheme WebSocket URL. var wssv = new WebSocketServer (4649); //var wssv = new WebSocketServer (5963, true); @@ -50,7 +50,13 @@ namespace Example2 wssv.Log.Level = LogLevel.Trace; // To change the wait time for the response to the WebSocket Ping or Close. - wssv.WaitTime = TimeSpan.FromSeconds (2); + //wssv.WaitTime = TimeSpan.FromSeconds (2); + + // Not to remove the inactive sessions periodically. + //wssv.KeepClean = false; + + // To resolve to wait for socket in TIME_WAIT state. + //wssv.ReuseAddress = true; #endif /* To provide the secure connection. var cert = ConfigurationManager.AppSettings["ServerCertFile"]; @@ -62,21 +68,15 @@ namespace Example2 wssv.AuthenticationSchemes = AuthenticationSchemes.Basic; wssv.Realm = "WebSocket Test"; wssv.UserCredentialsFinder = id => { - var name = id.Name; + var name = id.Name; - // Return user name, password, and roles. - return name == "nobita" - ? new NetworkCredential (name, "password", "gunfighter") - : null; // If the user credentials aren't found. - }; + // Return user name, password, and roles. + return name == "nobita" + ? new NetworkCredential (name, "password", "gunfighter") + : null; // If the user credentials aren't found. + }; */ - // Not to remove the inactive sessions periodically. - //wssv.KeepClean = false; - - // To resolve to wait for socket in TIME_WAIT state. - //wssv.ReuseAddress = true; - // Add the WebSocket services. wssv.AddWebSocketService ("/Echo"); wssv.AddWebSocketService ("/Chat"); @@ -84,33 +84,35 @@ namespace Example2 /* Add the WebSocket service with initializing. wssv.AddWebSocketService ( "/Chat", - () => new Chat ("Anon#") { - // To send the Sec-WebSocket-Protocol header that has a subprotocol name. - Protocol = "chat", - // To emit a WebSocket.OnMessage event when receives a ping. - EmitOnPing = true, - // To ignore the Sec-WebSocket-Extensions header. - IgnoreExtensions = true, - // To validate the Origin header. - OriginValidator = val => { - // Check the value of the Origin header, and return true if valid. - Uri origin; - return !val.IsNullOrEmpty () && - Uri.TryCreate (val, UriKind.Absolute, out origin) && - origin.Host == "localhost"; - }, - // To validate the Cookies. - CookiesValidator = (req, res) => { - // Check the Cookies in 'req', and set the Cookies to send to the client with 'res' - // if necessary. - foreach (Cookie cookie in req) { - cookie.Expired = true; - res.Add (cookie); - } + () => + new Chat ("Anon#") { + // To send the Sec-WebSocket-Protocol header that has a subprotocol name. + Protocol = "chat", + // To emit a WebSocket.OnMessage event when receives a ping. + EmitOnPing = true, + // To ignore the Sec-WebSocket-Extensions header. + IgnoreExtensions = true, + // To validate the Origin header. + OriginValidator = val => { + // Check the value of the Origin header, and return true if valid. + Uri origin; + return !val.IsNullOrEmpty () + && Uri.TryCreate (val, UriKind.Absolute, out origin) + && origin.Host == "localhost"; + }, + // To validate the cookies. + CookiesValidator = (req, res) => { + // Check the cookies in 'req', and set the cookies to send to + // the client with 'res' if necessary. + foreach (Cookie cookie in req) { + cookie.Expired = true; + res.Add (cookie); + } - return true; // If valid. + return true; // If valid. + } } - }); + ); */ wssv.Start ();