1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibWebSocket: Adds capability for receiving fragmented messages

This commit is contained in:
Konrad Bartecki 2023-09-03 04:38:45 +02:00 committed by Andrew Kaster
parent d277d2e1fb
commit 773a64aa5a
2 changed files with 19 additions and 9 deletions

View file

@ -112,6 +112,8 @@ private:
RefPtr<WebSocketImpl> m_impl;
Vector<u8> m_buffered_data;
ByteBuffer m_fragmented_data_buffer;
WebSocket::OpCode m_initial_fragment_opcode;
};
}