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
readline(keep_max) reads a full line, but only returns keep_max characters, avoiding unnecessary memory allocations. readline(keep_max = 0) simply skips a line, as uwebsockets discards all headers but the first one.
Return the total number of characters in addition to the captured data, to differentiate between an empty line and keep_max = 0.
readline(keep_max)
reads a full line, but only returns keep_max characters, avoiding unnecessary memory allocations.readline(keep_max = 0)
simply skips a line, as uwebsockets discards all headers but the first one.Return the total number of characters in addition to the captured data, to differentiate between an empty line and keep_max = 0.
The text was updated successfully, but these errors were encountered: