Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-16 Thread Camille Gonnet
2016-06-13 23:29 GMT+02:00 Lukasz Marek : > On 02.06.2016 14:29, Camille Gonnet wrote: > >> When writing files to FTP, if the data connection is closed before the >> control connection, the server may handle it as an aborted file transfer >> and create and leave the file

Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-13 Thread Lukasz Marek
On 02.06.2016 14:29, Camille Gonnet wrote: When writing files to FTP, if the data connection is closed before the control connection, the server may handle it as an aborted file transfer and create and leave the file empty. --- libavformat/ftp.c | 14 ++ 1 file changed, 10

Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-13 Thread Camille Gonnet
2016-06-09 1:19 GMT+02:00 Lukasz Marek : > On 09.06.2016 00:25, Michael Niedermayer wrote: > > On Thu, Jun 02, 2016 at 02:29:47PM +0200, Camille Gonnet wrote: > >> When writing files to FTP, if the data connection is closed before the > >> control connection, the server

Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-08 Thread Lukasz Marek
On 09.06.2016 00:25, Michael Niedermayer wrote: > On Thu, Jun 02, 2016 at 02:29:47PM +0200, Camille Gonnet wrote: >> When writing files to FTP, if the data connection is closed before the >> control connection, the server may handle it as an aborted file transfer >> and create and leave the file

Re: [FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-08 Thread Michael Niedermayer
On Thu, Jun 02, 2016 at 02:29:47PM +0200, Camille Gonnet wrote: > When writing files to FTP, if the data connection is closed before the > control connection, the server may handle it as an aborted file transfer > and create and leave the file empty. which ftp server, or is that in the RFC, if so

[FFmpeg-devel] [PATCH] FTP graceful close data connection to avoid server abort

2016-06-02 Thread Camille Gonnet
When writing files to FTP, if the data connection is closed before the control connection, the server may handle it as an aborted file transfer and create and leave the file empty. --- libavformat/ftp.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git