add note to 64bit length code in frame generator

This commit is contained in:
Jesse McConnell 2012-06-26 11:14:34 -05:00
parent 6e2d9549c9
commit 89a26e6d75
1 changed files with 5 additions and 5 deletions

View File

@ -77,11 +77,11 @@ public abstract class FrameGenerator<T extends BaseFrame>
{
// we have a 64 bit length
b |= 0x7F;
framing.put(b); // indicate 4 byte length
framing.put((byte)0);
framing.put((byte)0);
framing.put((byte)0);
framing.put((byte)0);
framing.put(b); // indicate 8 byte length
framing.put((byte)0); //
framing.put((byte)0); // anything over an
framing.put((byte)0); // int is just
framing.put((byte)0); // intsane!
framing.put((byte)((payloadLength>>24) & 0xFF));
framing.put((byte)((payloadLength>>16) & 0xFF));
framing.put((byte)((payloadLength>>8) & 0xFF));