Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…il?id=14 to make sending packets greater than 16K possible over SSL. Compile the SWF files with this patch using the flex 4.6 sdk. Tested in IE9 with flashplayer 11.4.402.287 to work.
  • Loading branch information
jamadden committed Nov 1, 2012
1 parent 7677e7a commit 1eb68ad
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 0 deletions.
Binary file modified WebSocketMain.swf
Binary file not shown.
Binary file modified WebSocketMainInsecure.zip
Binary file not shown.
1 change: 1 addition & 0 deletions flash-src/third-party/com/hurlant/crypto/tls/TLSEngine.as
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@ package com.hurlant.crypto.tls {
rec.writeBytes(data, offset, 16384); rec.writeBytes(data, offset, 16384);
rec.position = 0; rec.position = 0;
sendRecord(PROTOCOL_APPLICATION_DATA, rec); sendRecord(PROTOCOL_APPLICATION_DATA, rec);
rec.length = 0;
offset += 16384; offset += 16384;
len -= 16384; len -= 16384;
} }
Expand Down

0 comments on commit 1eb68ad

Please sign in to comment.