troglobit / uftpd

FTP/TFTP server for Linux that just works™
https://troglobit.com/projects/uftpd/
ISC License
182 stars 32 forks source link

Add support for ABOR #14

Closed troglobit closed 6 years ago

troglobit commented 6 years ago

Currently the uftpd RETR, and STOR, support is "in line" in the RETR callback. This prevents a client from sending ABOR (stop/pause transfer) and can lock up uftpd while the kernel times out the PASV socket.

Both RETR and STOR need to be handled in the backgroud or as separate event callbacks that can be stopped using ABOR at any time by the connected client.

This issue is instrumental to getting the VLC Android app. mentioned in issue #9 to work.

troglobit commented 6 years ago

Complete support added in refactor af54295.