The control connection in FTP is persistent but the data connection is created and disposed after each data transfer (aka. non-persistent). What are the advantages to making the data connection non-persistent? Does making the data connection non-persistent free up resources for the server?
Asked
Active
Viewed 1,623 times
1 Answers
4
So that end of file equals end of stream, so that there doesn't have to be a superimposed protocol on the data connection.

user207421
- 305,947
- 44
- 307
- 483
-
Can you please explain the meaning of superimposed protocol on data connection? – Zephyr Aug 26 '17 at 15:27
-
@Zephyr For example, sending the length of the file ahead of the file. – user207421 Aug 26 '17 at 19:53