Commit Graph

220 Commits

Author SHA1 Message Date
sta
02ec346c30 [Modify] Polish it 2015-11-20 18:05:13 +09:00
sta
1f40f8e566 [Modify] Polish it
More clearly received or not.
2015-10-17 15:31:00 +09:00
sta
ee177afb7c [Modify] Rename it 2015-10-07 11:08:34 +09:00
sta
e02b553739 [Modify] Rename it to ToArray 2015-10-02 11:32:36 +09:00
sta
cd886d32df Added the Ext.UTF8Encode method 2015-08-23 16:31:18 +09:00
sta
ddb5819a0e Added the WebSocket.CheckSendParameters method 2015-08-21 16:31:50 +09:00
sta
09a64d67be Added the WebSocket.CheckSendParameter methods 2015-08-20 16:36:14 +09:00
sta
f852a19746 Refactored WebSocketServiceHost.cs, separated the WebSocketServiceHost<TBehavior> class into a new file 2015-08-19 15:47:57 +09:00
sta
18b980fc98 Modified a bit for WebSocketServiceHost.cs, into the year 2015 2015-08-18 13:15:58 +09:00
sta
170977586a Refactored a few for WebSocketServiceHost.cs 2015-08-18 13:05:22 +09:00
sta
999e777517 Added the internal Ext.CheckIfAvailable (ServerState, bool, bool, bool) method 2015-08-14 16:05:00 +09:00
sta
80a0107bab Added the internal Ext.CheckIfCanStop (ServerState) method 2015-08-13 11:41:38 +09:00
sta
46eae139e2 Added the internal Ext.CheckIfCanStart (ServerState) method 2015-08-12 17:24:53 +09:00
sta
8efe37eb2f Added the public WebSocket.Accept and AcceptAsync methods 2015-08-07 17:27:04 +09:00
sta
776fee9170 Refactored a few for WebSocket.cs 2015-08-05 16:37:53 +09:00
sta
0eec6595a6 Refactored a few for WebSocketBehavior.cs 2015-07-28 15:07:41 +09:00
sta
f99112fc2f Fix for pull request #113 2015-07-27 16:11:16 +09:00
sta
8cd2248b2b Refactored a few for HttpServer.cs 2015-07-19 15:24:46 +09:00
sta
9360a6d99a Fix for pull request #115, added the HttpServer (string) constructor 2015-07-16 17:37:53 +09:00
sta
d2dc6ff959 Fix for pull request #115, added the Address property to the HttpServer class 2015-07-12 16:56:02 +09:00
sta
96b684036f Refactored a few for WebSocketServer.cs 2015-07-10 21:18:36 +09:00
sta
34de5b9ca4 Refactored a few for HttpServer.cs 2015-07-09 15:13:53 +09:00
sta
d4fc8da7a8 Fix for pull request #115, added the HttpServer (System.Net.IPAddress, int) constructor 2015-07-08 15:00:38 +09:00
sta
c10c9886ef Fix for pull request #115, added the HttpServer (System.Net.IPAddress, int, bool) constructor 2015-07-07 17:31:33 +09:00
sta
2078bfad5a Fix for pull request #133, allow port 443 with non secure scheme, and allow port 80 with secure scheme 2015-06-30 15:43:00 +09:00
sta
cb8d1e75f6 Refactored a few for HttpServer.cs 2015-06-29 16:20:00 +09:00
sta
72b7cafe4f Refactored a few for WebSocketServer.cs 2015-06-27 17:39:19 +09:00
sta
3764de92e7 Refactored a few for WebSocketServer.cs 2015-06-26 17:20:35 +09:00
sta
0516da098c Fix for pull request #115, added null check for IPAddress parameter in the WebSocketServer (System.Net.IPAddress, int, bool) constructor 2015-06-24 18:06:32 +09:00
sta
cffd94e9c5 Initialize 'data' with null 2015-05-08 15:52:13 +09:00
sta
dee36926ae Added the WebSocket.CheckPingParameter method, and removed the Ext.CheckIfValidControlData method 2015-05-05 15:21:28 +09:00
sta
531eefac17 Renamed the CheckIfValidCloseParameters methods to the CheckCloseParameters methods 2015-05-04 15:48:18 +09:00
sta
e81c5b7d96 Removed the Ext.IsNoStatus methods 2015-05-03 14:46:32 +09:00
sta
f3e0591a18 Moved the Ext.CheckIfValidCloseParameters methods to the WebSocket class 2015-05-02 15:35:03 +09:00
sta
33f578f94b Renamed some of the CloseStatusCode enum values 2015-04-28 17:32:40 +09:00
sta
59effc31ce Refactored a few for WebSocketBehavior.cs 2015-04-25 16:01:09 +09:00
sta
faa689c418 Modified a bit for WebSocketServiceManager.cs, into the year 2015 2015-04-24 15:13:17 +09:00
sta
16df8897a9 Refactored a few for WebSocketServiceManager.cs 2015-04-24 15:11:52 +09:00
sta
a2f5edd1d1 Modified a bit for WebSocketSessionManager.cs, into the year 2015 2015-04-23 14:44:11 +09:00
sta
425d1387a0 Refactored a few for WebSocketSessionManager.cs 2015-04-23 14:41:03 +09:00
sta
7d168515d1 Replaced the PingTo (string id, string message) method with the PingTo (string message, string id) method 2015-04-22 14:56:52 +09:00
sta
8910c6cced Replaced the SendToAsync (string id, Stream stream, int length, Action<bool> completed) method with the SendToAsync (Stream stream, int length, string id, Action<bool> completed) method 2015-04-21 15:38:10 +09:00
sta
d3dd903809 Replaced the SendToAsync (string id, string data, Action<bool> completed) method with the SendToAsync (string data, string id, Action<bool> completed) method 2015-04-21 15:31:37 +09:00
sta
4d837ce8f7 Replaced the SendToAsync (string id, byte[] data, Action<bool> completed) method with the SendToAsync (byte[] data, string id, Action<bool> completed) method 2015-04-21 15:25:27 +09:00
sta
8e1005b90f Replaced the SendTo (string id, string data) method with the SendTo (string data, string id) method 2015-04-21 15:17:20 +09:00
sta
a45baed91c Replaced the SendTo (string id, byte[] data) method with the SendTo (byte[] data, string id) method 2015-04-20 17:12:28 +09:00
sta
ec64e446a4 Modified a bit for WebSocketBehavior.cs, into the year 2015 2015-04-19 15:48:41 +09:00
sta
4876461209 Refactored a few for WebSocketBehavior.cs 2015-04-18 17:42:28 +09:00
sta
f5a1ce2c53 Added the WebSocketBehavior.IgnoreExtensions property, to ignore the extensions requested from the client 2015-04-15 17:03:16 +09:00
sta
828e117190 Replaced the AcceptWebSocket (string, Logger) method with the AcceptWebSocket (string) method 2015-02-05 17:31:33 +09:00