diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-10-31 18:30:36 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-12-01 17:38:37 +0100 |
commit | a2f396680051f6c39064772b5f779bd829d05976 (patch) | |
tree | 26eed3679294c9141382396ca9e49a21483660a0 /configure.ac | |
parent | c75c9d4fbc6ba192b6da57c5b662f36c5d323137 (diff) | |
download | curl-a2f396680051f6c39064772b5f779bd829d05976.tar.gz |
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 <nmav@gnutls.org>
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8ae12067e..be5edabb2 100755 --- a/configure.ac +++ b/configure.ac @@ -4091,6 +4091,7 @@ if test "x$USE_LIBSSH2" = "x1"; then fi if test "x$USE_LIBSSH" = "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS SCP" + SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS SFTP" fi if test "x$CURL_DISABLE_RTSP" != "x1"; then SUPPORT_PROTOCOLS="$SUPPORT_PROTOCOLS RTSP" |