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
Endpoint internally uses size_t to declare the file size and file position, which limits the file size to 4 GB on 32-bit platforms.
NOTE: This applies only to the file size and position, not the chunk.
TODO
Use int64_t for variables representing file size or position, instead of size_t.