Fix for issue #15

This commit is contained in:
sta
2013-04-06 16:21:41 +09:00
parent cbaa540b59
commit 94cf881dcf
83 changed files with 985 additions and 118 deletions

View File

@@ -1,5 +1,6 @@
using System;
using WebSocketSharp;
using WebSocketSharp.Net;
using WebSocketSharp.Server;
namespace Example2 {
@@ -13,5 +14,16 @@ namespace Example2 {
: e.Data;
Send(msg);
}
protected override bool ProcessCookies(CookieCollection request, CookieCollection response)
{
foreach (Cookie cookie in request)
{
cookie.Expired = true;
response.Add(cookie);
}
return true;
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.