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
{{ message }}
This repository was archived by the owner on Apr 22, 2026. It is now read-only.
Our current implementation struggles to process partial flags and buffers efficiently. The application may crash if it encounters a partial buffer where the carriage return and newline are not yet present. Addressing this issue would involve implementing incremental parsing of flags.
Our current strategy involves scanning the buffer forward to determine if a \r\n sequence exist in the end of the buffer, if it does we attempt to decode the buffer, if not we return a .waitForMoreBytes status. However this approach many not handle some buffer arrangements correctly.
Our current implementation struggles to process partial flags and buffers efficiently. The application may crash if it encounters a partial buffer where the carriage return and newline are not yet present. Addressing this issue would involve implementing incremental parsing of flags.
Our current strategy involves scanning the buffer forward to determine if a
\r\nsequence exist in the end of the buffer, if it does we attempt to decode the buffer, if not we return a .waitForMoreBytesstatus. However this approach many not handle some buffer arrangements correctly.