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
This causes an additional write() call on the underlying connection stream (which could be a TLS stream) for large frame payloads (starting from ~252 bytes). Since OutgoingWebSocketMessage already uses an Appender to accumulate payload data, it could easily reserve a few bytes for the header, so that the full frame could be sent in one go.
This causes an additional
write()
call on the underlying connection stream (which could be a TLS stream) for large frame payloads (starting from ~252 bytes). SinceOutgoingWebSocketMessage
already uses anAppender
to accumulate payload data, it could easily reserve a few bytes for the header, so that the full frame could be sent in one go.Original discussion: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/43534/
The text was updated successfully, but these errors were encountered: