893 Commits (265c2a0221c656a5a5fe9e59df7545e3b4c07568)

Author SHA1 Message Date
sta 97b4ca3cf8 Refactored a few for HttpConnection.cs 11 years ago
sta a588d8e648 Refactored a few for HttpConnection.cs 11 years ago
David Burhans 23a8c1f4b1 add missed semicolon 11 years ago
David Burhans ab3d3bd7b5 fix spacing. add intermediate variables 11 years ago
sta f3cd96966e Refactored the HttpListenerResponse.Close (byte[], bool) and HttpConnection.SendError (string, int) methods 11 years ago
sta 659ab51b59 Refactored a few for HttpListenerResponse.cs 11 years ago
sta 626e22bbcf Modified a few for HttpConnection.cs, use the ResponseStream.Close (bool) method 11 years ago
sta 4f717159c3 Modified a bit for ResponseStream.cs, into the year 2015 11 years ago
sta 0d58843a99 Modified a bit for the description of ResponseStream.cs 11 years ago
sta 28030d0041 Refactored a few for ResponseStream.cs 11 years ago
David Burhans c6e3e12aaf Port 443 is also a default port and should be excluded from the Host header on websocket requests for compatibility reasons 11 years ago
sta b6ac7e73e1 Refactored ResponseStream.cs 11 years ago
sta e4bd4ec5d0 Refactored ResponseStream.cs 11 years ago
sta fb3c7fc41e Refactored ResponseStream.cs 11 years ago
sta 849c964102 Refactored a few for ResponseStream.cs 11 years ago
sta 854005660b Refactored a few for ResponseStream.cs 11 years ago
sta 66173be9cb Refactored a few for Ext.cs 11 years ago
sta 3c8b8210ac Refactored a few for Ext.cs 11 years ago
sta f947beb12f Refactored a few for Ext.cs 11 years ago
sta 086956c910 Refactored a few for HttpConnection.cs 11 years ago
sta fbcf8377d3 Refactored a few for HttpConnection.cs 11 years ago
sta 9113555a54 Refactored a few for HttpConnection.cs 11 years ago
sta 323161988e Fix for issue #131 11 years ago
sta 36dee90278 Modified a bit for PayloadData.cs, into the year 2015 11 years ago
sta f8320b6b13 Refactored a few for PayloadData.cs 11 years ago
sta b57d0dad7a Refactored a few for WebSocketFrame.cs, use the Ext.EmptyByteArray field 11 years ago
sta d2ad08d88a Added internal EmptyByteArray field 11 years ago
sta e58ee06c4b Modified a bit for WebSocketFrame.cs, into the year 2015 11 years ago
sta d359146b5c Refactored a few for WebSocketFrame.cs 11 years ago
sta 64fd327e28 Refactored a few for WebSocketFrame.cs 11 years ago
sta 75c45b0523 Refactored a few for WebSocketFrame.cs 11 years ago
sta ff06963613 Refactored a few for HttpListener.cs 11 years ago
sta 9efcbbe960 Refactored a few for HttpListenerAsyncResult.cs 11 years ago
sta cafac4ebc5 Refactored ChunkStream.cs 11 years ago
sta 73a4cae782 Modified a bit for InputChunkState.cs, into the year 2015 11 years ago
sta bc8e9eb5f5 Modified a bit for the description of InputChunkState.cs 11 years ago
sta 8661468ccf Refactored InputChunkState.cs 11 years ago
sta 181400f33a Modified a few for ChunkStream.cs, need to typecast from 'byte' to 'char' 11 years ago
sta 25108b1868 Modified a bit for InputState.cs, into the year 2015 11 years ago
sta fdcebd7c9a Modified a bit for the description of InputState.cs 11 years ago
sta cffd94e9c5 Initialize 'data' with null 11 years ago
sta d0dc29d05d Fix for issue #120, add 0x00 for 'BFINAL Set to 1' 11 years ago
sta d7dd15042a Modified a bit for LineState.cs, into the year 2015 11 years ago
sta 7930ec2bf0 Modified a bit for the description of LineState.cs 11 years ago
sta 595c68fe6d Refactored a few for LineState.cs, to be PascalCase 11 years ago
sta dee36926ae Added the WebSocket.CheckPingParameter method, and removed the Ext.CheckIfValidControlData method 11 years ago
sta 531eefac17 Renamed the CheckIfValidCloseParameters methods to the CheckCloseParameters methods 11 years ago
sta 79ea2b74c7 Refactored a few for CloseStatusCode.cs 11 years ago
sta 353abd0d03 Removed the Ext.IsNoStatus methods 11 years ago
sta e81c5b7d96 Removed the Ext.IsNoStatus methods 11 years ago
sta f3e0591a18 Moved the Ext.CheckIfValidCloseParameters methods to the WebSocket class 11 years ago
sta 28e2992e8d Modified a bit for CloseEventArgs.cs, into the year 2015 11 years ago
sta 10fd259091 Refactored a few for CloseEventArgs.cs 11 years ago
sta 8f91f46fd2 Refactored a bit for CloseStatusCode.cs 11 years ago
sta 33f578f94b Renamed some of the CloseStatusCode enum values 11 years ago
sta 06b4084a06 Refactored a bit for CloseStatusCode.cs 11 years ago
sta 371ac36dd9 Refactored a few for WebSocket.cs 11 years ago
sta 59effc31ce Refactored a few for WebSocketBehavior.cs 11 years ago
sta faa689c418 Modified a bit for WebSocketServiceManager.cs, into the year 2015 11 years ago
sta 16df8897a9 Refactored a few for WebSocketServiceManager.cs 11 years ago
sta a2f5edd1d1 Modified a bit for WebSocketSessionManager.cs, into the year 2015 11 years ago
sta 425d1387a0 Refactored a few for WebSocketSessionManager.cs 11 years ago
sta 7d168515d1 Replaced the PingTo (string id, string message) method with the PingTo (string message, string id) method 11 years ago
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 11 years ago
sta d3dd903809 Replaced the SendToAsync (string id, string data, Action<bool> completed) method with the SendToAsync (string data, string id, Action<bool> completed) method 11 years ago
sta 4d837ce8f7 Replaced the SendToAsync (string id, byte[] data, Action<bool> completed) method with the SendToAsync (byte[] data, string id, Action<bool> completed) method 11 years ago
sta 8e1005b90f Replaced the SendTo (string id, string data) method with the SendTo (string data, string id) method 11 years ago
sta a45baed91c Replaced the SendTo (string id, byte[] data) method with the SendTo (byte[] data, string id) method 11 years ago
sta 43efc34542 Refactored a few for ChunkStream.cs 11 years ago
sta ec64e446a4 Modified a bit for WebSocketBehavior.cs, into the year 2015 11 years ago
sta 4876461209 Refactored a few for WebSocketBehavior.cs 11 years ago
sta 1eabd45f24 Refactored a few for ChunkStream.cs 11 years ago
sta f5a1ce2c53 Added the WebSocketBehavior.IgnoreExtensions property, to ignore the extensions requested from the client 11 years ago
sta dac4a4a489 Refactored a bit for ChunkStream.cs 11 years ago
sta a5e081362a Refactored a few for ChunkStream.cs 11 years ago
sta 59bd234808 Refactored a few for ChunkStream.cs 11 years ago
sta 67f63654cd Refactored a few for ChunkStream.cs 11 years ago
sta b5aa5c4f06 Refactored a bit for ChunkedRequestStream.cs 11 years ago
sta a058af8a01 Refactored a few for HttpConnection.cs 11 years ago
sta a6bd7c35c4 Refactored a few for ChunkedRequestStream.cs 11 years ago
sta 6ee4657719 Modified a bit for RequestStream.cs, into the year 2015 11 years ago
sta 475fe0a884 Modified a bit for the description of RequestStream.cs 11 years ago
sta 6847e632ea Refactored a few for RequestStream.cs 11 years ago
sta a25a1ea652 Modified a bit for HttpStreamAsyncResult.cs, into the year 2015 11 years ago
sta 962dc05774 Modified a bit for the description of HttpStreamAsyncResult.cs 11 years ago
sta 8793576fba Refactored a few for HttpStreamAsyncResult.cs 11 years ago
sta 0a07e10c90 Modified a bit for ReadBufferState.cs, into the year 2015 11 years ago
sta cc9f3b1d92 Modified a bit for the description of ReadBufferState.cs 11 years ago
sta c21db7ea64 Refactored a few for ReadBufferState.cs 11 years ago
sta e113e842d3 Modified a bit for ChunkedRequestStream.cs, into the year 2015 11 years ago
sta f480eb5785 Modified a bit for the description of ChunkedRequestStream.cs 11 years ago
sta e73cfe4bc2 Refactored a few for ChunkedRequestStream.cs 11 years ago
sta 195e3c9adb Modified a bit for ChunkStream.cs, into the year 2015 11 years ago
sta 767645d7a0 Modified a bit for the description of ChunkStream.cs 11 years ago
sta f7ca668c02 Refactored a few for ChunkStream.cs 11 years ago
sta d959e0f437 Modified a bit for Chunk.cs, into the year 2015 11 years ago
sta 2519d6151b Modified a bit for the description of Chunk.cs 11 years ago
sta 7857aa7076 Refactored a few for Chunk.cs 11 years ago
sta 39bdc15f3f Removed the IsCompressionExtension (this string) method 11 years ago
sta 0760613765 Modified a few for the validateSecWebSocketExtensionsHeader method 11 years ago
sta 300574f8a0 Fix for issue #110, send 'server_no_context_takeover' and 'client_no_context_takeover' parameters in 'permessage-deflate' extension 11 years ago
sta 5eeba8c19f Modified a bit for the processSecWebSocketExtensionsHeader2 method 11 years ago
sta 0992c85350 Added the validateSecWebSocketExtensionsHeader2 method 11 years ago
sta b98f8a60cc Modified a few for the processSecWebSocketExtensionsHeader2 method 11 years ago
sta b4fb6912e6 Added the createExtensions2 method 11 years ago
sta 446c5176e9 Added the processSecWebSocketExtensionsHeader2 (string) method 11 years ago
sta 940cb093a1 Added IsCompressionExtension (this string, CompressionMethod) method 11 years ago
sta ec45f6a7b6 Replaced the ToExtensionString method with ToExtensionString (this CompressionMethod, params string[]) method 11 years ago
sta 39636b4b30 Moved the authenticate method to the HttpListener class, as Authenticate (HttpListenerContext) method 11 years ago
sta 913c47b70c Replaced the authenticate method with authenticate (HttpListenerContext, HttpListener) method 11 years ago
sta f627efd8df Modified a bit for HttpListenerAsyncResult.cs, into the year 2015 11 years ago
sta b1cf09929f Modified a bit for the description of HttpListenerAsyncResult.cs 11 years ago
sta 7364805b9e Refactored a few for HttpListenerAsyncResult.cs 11 years ago
sta bd70e0b11c Modified a bit for HttpListenerResponse.cs, into the year 2015 11 years ago
sta ca7a0c1ef2 Modified a bit for the description of HttpListenerResponse.cs 11 years ago
sta 78fd24040b Refactored a few for HttpListenerResponse.cs 11 years ago
sta f99c31a7e0 Refactored a bit for HttpListenerRequest.cs 11 years ago
sta 4d9d5858d8 Modified a bit for HttpListenerRequest.cs, into the year 2015 11 years ago
sta eb765953ca Modified a bit for the description of HttpListenerRequest.cs 11 years ago
sta f8758c61e6 Refactored a few for HttpListenerRequest.cs 11 years ago
sta 236846a7c3 Refactored a few for HttpListenerPrefix.cs 11 years ago
sta 7d678fec4c Modified a bit for HttpListenerPrefixCollection.cs, into the year 2015 11 years ago
sta c1fa217fe6 Modified a bit for the description of HttpListenerPrefixCollection.cs 11 years ago
sta fa1a572453 Refactored a few for HttpListenerPrefixCollection.cs 11 years ago
sta 1118674782 Modified a bit for HttpListenerPrefix.cs, into the year 2015 11 years ago
sta a8429f7567 Modified a bit for the description of HttpListenerPrefix.cs 11 years ago
sta 5beec5da30 Refactored a few for EndPointManager.cs 11 years ago
sta cd10c21112 Modified a few for EndPointManager.cs 11 years ago
sta 47e859f57f Modified a few for EndPointListener.cs 11 years ago
sta 328fd5d43d Replaced the RemoveEndPoint (IPEndPoint, EndPointListener) method with the RemoveEndPoint (EndPointListener) method 11 years ago
sta 9ca8c54e8f Added Address and Port properties 11 years ago
sta 160aa923c2 Refactored a few for EndPointManager.cs 11 years ago
sta d3b45eb6ec Modified a bit for EndPointManager.cs, into the year 2015 11 years ago
sta 2aebe89e2d Modified a bit for the description of EndPointManager.cs 11 years ago
sta 8c9898366b Removed the getEndPointListener (IPAddress, int, bool, HttpListener) method from the EndPointManager class 11 years ago
sta 196a316141 Modified a few for EndPointManager.cs 11 years ago
sta 168c550370 Fix for issue #103, replaced the getEndPointListener (IPAddress, int, bool, HttpListener) method with the getEndPointListener (string, int, HttpListener, bool) method, to be same as the latest Mono 11 years ago
sta d8df50efef Added getEndPointListener (string, int, HttpListener, bool) method to the EndPointManager class 11 years ago
sta 78a3bdc1b7 Modified a bit for CloseStatusCode.cs, into the year 2015 11 years ago
sta bd3eba02cf Modified a bit for Opcode.cs, into the year 2015 11 years ago
sta 1cb5b3079d Changed the access level of the Log property to the public 11 years ago
sta d4e844dfcd Added Log property to the HttpListenerWebSocketContext class 11 years ago
sta e989e3e18f Added Log property to the TcpListenerWebSocketContext class 11 years ago
sta 14c419fc17 Modified a bit for TcpListenerWebSocketContext.cs, into the year 2015 11 years ago
sta 01770d043d Replaced the HttpListenerWebSocketContext (HttpListenerContext, string, Logger) constructor with the HttpListenerWebSocketContext (HttpListenerContext, string) constructor 11 years ago
sta 4bcd400635 Modified a bit for HttpListenerWebSocketContext.cs, into the year 2015 11 years ago
sta 9df983b9d5 Modified a bit for HttpListenerContext.cs, into the year 2015 11 years ago
sta 9c43fcb039 Modified a bit for the description of HttpListenerContext.cs 11 years ago
sta 828e117190 Replaced the AcceptWebSocket (string, Logger) method with the AcceptWebSocket (string) method 11 years ago
sta a1da1a8ada Added Log property to the HttpListener class 11 years ago
sta 382efaac6e Modified a bit for the description of HttpListener.cs 11 years ago
sta 9e239e75d9 Modified a bit for HttpListener.cs, into the year 2015 11 years ago
sta 9568b0c603 Modified a bit for Ext.cs, into the year 2015 11 years ago
sta 766f2915f5 Modified a few for the description of Ext.cs 11 years ago
sta bef64963be Modified a bit for the CheckIfValidControlData method 11 years ago
sta 91adf42611 Removed the IsSendable methods 11 years ago
sta 5c64c3c90e Modified the HttpServer class, fix for 'No Status Code' for the stop 11 years ago
sta 22c1e8e3ad Modified a bit for HttpServer.cs, into the new year 2015 11 years ago
sta 7b050e07e2 Modified the WebSocketServer class, fix for 'No Status Code' for the stop 11 years ago
sta 5c0ccc09a5 Modified a bit for WebSocketServer.cs, into the new year 2015 11 years ago
sta f072485b83 Modified the WebSocket class, fix for 'No Status Code' for the close 11 years ago
sta 1bb7775a7e Added the CheckIfValidCloseParameters (CloseStatusCode, string) method 11 years ago
sta 2c8ca0a491 Added the CheckIfValidCloseParameters (ushort, string) method 11 years ago
sta 85d77399cc Added the IsSendable (CloseStatusCode) method 11 years ago
sta a74f109649 Added the IsNoStatusCode (CloseStatusCode) method 11 years ago
sta fa936b1743 Added the IsSendable (ushort) method 11 years ago
sta 9a06b646d7 Added the IsNoStatusCode (ushort) method 11 years ago
sta dc6250a0e3 Replaced the close method with the close2 method and renamed, fix for the close while connecting 11 years ago
sta 88a1bbb9f6 Added the close2 (CloseEventArgs, bool, bool) method, to replace the close (CloseEventArgs, bool, bool) method with this 11 years ago
sta fe9ec9f29b Refactored a bit for WebSocket.cs, into the new year 2015 11 years ago
sta c588c2e0a6 Refactored a bit for EndPointListener.cs, modified description about the source of this code 11 years ago
sta 3307f472bb Refactored a bit for EndPointListener.cs, replaced 'args' with 'e' 11 years ago
sta 75ac784100 Refactored a few for HttpConnection.cs 11 years ago
sta 4fbcd862f3 Refactored a few for HttpConnection.cs 11 years ago
sta 1692f87d07 Refactored a few for HttpConnection.cs 11 years ago
sta 0207575b99 Into the new year 2015 11 years ago
sta 2b84433b38 Refactored a few for HttpConnection.cs 11 years ago
sta 419f349738 Refactored a few for HttpConnection.cs 11 years ago
sta 9431f9473c Refactored a few for EndPointListener.cs 11 years ago
sta a26ecb8595 Refactored a few for EndPointListener.cs 11 years ago
sta 61f62f050f Returned to the previous, this is for Unity 11 years ago
sta 6af171ddcb Refactored a few for EndPointListener.cs 11 years ago
sta 2179b2eec1 Refactored a few for EndPointListener.cs 11 years ago
sta e5df79514f Refactored a few for EndPointListener.cs 11 years ago
sta b73a95df8f Refactored a few for EndPointListener.cs 11 years ago
sta d337911f9c Refactored a few for EndPointListener.cs 11 years ago
sta d25abde628 Fix for issue #94, handle the value returned from the Socket.AcceptAsync method 11 years ago
sta e43558c780 Refactored the onAccept method 11 years ago
sta 744334b79e Handle the value returned from the Socket.AcceptAsync method 11 years ago
sta f285e7af12 Added processAccepted method 11 years ago
sta 6c8c4759c4 A small refactoring 11 years ago
sta 93137666f7 Removed the ProxyAuthenticationChallenge property from the HttpResponse class 11 years ago
sta 4042922810 Added checking more for the proxy authentication 11 years ago
sta 778d01b3d7 Removed the AuthenticationChallenge property from the HttpResponse class 11 years ago
sta f090fa9d5d Added some logs for the authentication 11 years ago
sta 47931c9a42 Removed checking if an empty string from the Ext.TryCreateWebSocketUri method 11 years ago
sta 7f01d41679 Modified a few for the WebSocket.sendHandshakeRequest method 11 years ago
sta a23bd04bdc Added HasConnectionClose property to the HttpResponse class 11 years ago
sta 54bb87140e Refactored WebSocket.cs 11 years ago
sta 94c26e6107 Fix for issue #42, enable redirection to the new url located in the handshake response 11 years ago