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
Since the client currently only uses one connection and sends chunks in sequence, they are just appended to one destination file at the server side; making the code need only read the uploaded data once.
HTTP is a stateless protocol, each request should be treated independently, using only one connection at a time is not part of the public interface to the PLupload client it's just an implementation detail.
This code ignores the chunk number for values greater than 0.
individual chunks should be saved to individual destinations, then joined once all chunks exist. Upload requests could arrive in any order!
The text was updated successfully, but these errors were encountered: