[Modify] Polish it

This commit is contained in:
sta 2016-07-23 16:36:12 +09:00
parent ae4d764355
commit 40b23a6aea

View File

@ -13,8 +13,8 @@ namespace Example2
{ {
// Create a new instance of the WebSocketServer class. // Create a new instance of the WebSocketServer class.
// //
// If you would like to provide the secure connection, you should create the instance with // If you would like to provide the secure connection, you should create a new instance with
// the 'secure' parameter set to true, or the wss scheme WebSocket URL. // the 'secure' parameter set to true, or a wss scheme WebSocket URL.
var wssv = new WebSocketServer (4649); var wssv = new WebSocketServer (4649);
//var wssv = new WebSocketServer (5963, true); //var wssv = new WebSocketServer (5963, true);
@ -50,7 +50,13 @@ namespace Example2
wssv.Log.Level = LogLevel.Trace; wssv.Log.Level = LogLevel.Trace;
// To change the wait time for the response to the WebSocket Ping or Close. // 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 #endif
/* To provide the secure connection. /* To provide the secure connection.
var cert = ConfigurationManager.AppSettings["ServerCertFile"]; var cert = ConfigurationManager.AppSettings["ServerCertFile"];
@ -71,12 +77,6 @@ namespace Example2
}; };
*/ */
// 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. // Add the WebSocket services.
wssv.AddWebSocketService<Echo> ("/Echo"); wssv.AddWebSocketService<Echo> ("/Echo");
wssv.AddWebSocketService<Chat> ("/Chat"); wssv.AddWebSocketService<Chat> ("/Chat");
@ -84,7 +84,8 @@ namespace Example2
/* Add the WebSocket service with initializing. /* Add the WebSocket service with initializing.
wssv.AddWebSocketService<Chat> ( wssv.AddWebSocketService<Chat> (
"/Chat", "/Chat",
() => new Chat ("Anon#") { () =>
new Chat ("Anon#") {
// To send the Sec-WebSocket-Protocol header that has a subprotocol name. // To send the Sec-WebSocket-Protocol header that has a subprotocol name.
Protocol = "chat", Protocol = "chat",
// To emit a WebSocket.OnMessage event when receives a ping. // To emit a WebSocket.OnMessage event when receives a ping.
@ -95,14 +96,14 @@ namespace Example2
OriginValidator = val => { OriginValidator = val => {
// Check the value of the Origin header, and return true if valid. // Check the value of the Origin header, and return true if valid.
Uri origin; Uri origin;
return !val.IsNullOrEmpty () && return !val.IsNullOrEmpty ()
Uri.TryCreate (val, UriKind.Absolute, out origin) && && Uri.TryCreate (val, UriKind.Absolute, out origin)
origin.Host == "localhost"; && origin.Host == "localhost";
}, },
// To validate the Cookies. // To validate the cookies.
CookiesValidator = (req, res) => { CookiesValidator = (req, res) => {
// Check the Cookies in 'req', and set the Cookies to send to the client with 'res' // Check the cookies in 'req', and set the cookies to send to
// if necessary. // the client with 'res' if necessary.
foreach (Cookie cookie in req) { foreach (Cookie cookie in req) {
cookie.Expired = true; cookie.Expired = true;
res.Add (cookie); res.Add (cookie);
@ -110,7 +111,8 @@ namespace Example2
return true; // If valid. return true; // If valid.
} }
}); }
);
*/ */
wssv.Start (); wssv.Start ();