Skip to content

Commit 4916d03

Browse files
authored
[minor] Allow to write frames with up to 2^48 - 1 bytes of data (#1973)
1 parent 5991c35 commit 4916d03

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/sender.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ class Sender {
7575
if (payloadLength === 126) {
7676
target.writeUInt16BE(data.length, 2);
7777
} else if (payloadLength === 127) {
78-
target.writeUInt32BE(0, 2);
79-
target.writeUInt32BE(data.length, 6);
78+
target[2] = 0;
79+
target[3] = 0;
80+
target.writeUIntBE(data.length, 4, 6);
8081
}
8182

8283
if (!options.mask) return [target, data];

0 commit comments

Comments
 (0)