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
Chunk count overflow on large data transfer (#4)
For chucks count > 9999 it overflows the header length of 5 bytes, due to header is appended with ":" char. This separator is never used though, so we can remove it and use this additional byte without changing the packet layout.