Re: [PATCH] Support FTP-over-SSL/TLS for regular FTP

2013-04-07 Thread Modestas Vainius
ssed up. > > > > Yeah, sorry about that. I will fix it. > > Did anything happen to this topic since then? I'm very sorry about delay. Fixed patch is below. >From 4f39352fe8dd85aa99f2141baa6a096da727c53e Mon Sep 17 00:00:00 2001 From: Modestas Vainius Date: Sun, 7 Apr 2013

Re: [PATCH] Support FTP-over-SSL/TLS for regular FTP

2013-02-24 Thread Junio C Hamano
Modestas Vainius writes: > Hello, > > Saturday 12 January 2013 06:25:21 rašė: >> On Sat, Jan 12, 2013 at 03:59:52PM +0200, Modestas Vainius wrote: >> > @@ -306,6 +311,11 @@ static CURL *get_curl_handle(void) >> > >> >if (curl_ftp_no_epsv) >> > >> >curl_easy_setopt(result, CUR

Re: [PATCH] Support FTP-over-SSL/TLS for regular FTP

2013-01-12 Thread Modestas Vainius
Hello, Saturday 12 January 2013 06:25:21 rašė: > On Sat, Jan 12, 2013 at 03:59:52PM +0200, Modestas Vainius wrote: > > @@ -306,6 +311,11 @@ static CURL *get_curl_handle(void) > > > > if (curl_ftp_no_epsv) > > > > curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0); > > > > +#i

Re: [PATCH] Support FTP-over-SSL/TLS for regular FTP

2013-01-12 Thread Matt Kraai
On Sat, Jan 12, 2013 at 03:59:52PM +0200, Modestas Vainius wrote: > @@ -306,6 +311,11 @@ static CURL *get_curl_handle(void) > if (curl_ftp_no_epsv) > curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0); > > +#ifdef CURLOPT_USE_SSL > +if (curl_ssl_try) > + curl_ea

[PATCH] Support FTP-over-SSL/TLS for regular FTP

2013-01-12 Thread Modestas Vainius
Add a boolean http.sslTry option which allows to enable AUTH SSL/TLS and encrypted data transfers when connecting via regular FTP protocol. Default is false since it might trigger certificate verification errors on misconfigured servers. Signed-off-by: Modestas Vainius --- Documentation/config.