From a2f396680051f6c39064772b5f779bd829d05976 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Tue, 31 Oct 2017 18:30:36 +0100 Subject: libssh: added SFTP support The SFTP back-end supports asynchronous reading only, limited to 32-bit file length. Writing is synchronous with no other limitations. This also brings keyboard-interactive authentication. Signed-off-by: Nikos Mavrogiannopoulos --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/url.c') diff --git a/lib/url.c b/lib/url.c index 731e46fea..731e67e17 100644 --- a/lib/url.c +++ b/lib/url.c @@ -200,7 +200,7 @@ static const struct Curl_handler * const protocols[] = { &Curl_handler_scp, #endif -#if defined(USE_LIBSSH2) +#if defined(USE_LIBSSH2) || defined(USE_LIBSSH) &Curl_handler_sftp, #endif -- cgit v1.2.3