Skip to content

Commit ab5d5b5

Browse files
author
Richard Lyle
committed
HOTFIX: Increased fragment to max size for now.
1 parent 04b95ef commit ab5d5b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ThirdParty/WebSocketSharp/WebSocket.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public class WebSocket : IDisposable
148148
static WebSocket ()
149149
{
150150
EmptyBytes = new byte[0];
151-
FragmentLength = 1016;
151+
FragmentLength = Int32.MaxValue - 14; // 1016
152152
RandomNumber = new RNGCryptoServiceProvider ();
153153
}
154154

0 commit comments

Comments
 (0)