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
WebSocketFrameWriter.writeHeader() wrote the mask key via
Unsafe.putInt() in native byte order. maskPayload() also
extracted mask bytes in native order. RFC 6455 specifies
network (big-endian) byte order for the mask key on the wire.
writeHeader() now writes the 4 mask key bytes individually in
big-endian order. maskPayload() converts to native order for
bulk XOR and extracts per-byte mask in big-endian order.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments