You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Sender.Hixie's send() method simply ignores the fin flag.
This leads to incomplete frames when using Websockets.stream() or send() with a read stream.
Suggested fix:
Write the final FF byte only when fin === true, write the initial 00 byte only when the last frame was terminated.
The text was updated successfully, but these errors were encountered:
The Sender.Hixie's send() method simply ignores the fin flag.
This leads to incomplete frames when using Websockets.stream() or send() with a read stream.
Suggested fix:
Write the final FF byte only when fin === true, write the initial 00 byte only when the last frame was terminated.
The text was updated successfully, but these errors were encountered: