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
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.
The text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: