mirror of
https://github.com/curl/curl.git
synced 2026-08-24 15:33:37 +03:00
Added support for libssh SSH SCP back-end
libssh is an alternative library to libssh2. https://www.libssh.org/ That patch set also introduces support for ECDSA ed25519 keys, as well as gssapi authentication. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
This commit is contained in:
parent
3973ee6a65
commit
c92d2e14cf
13 changed files with 1626 additions and 198 deletions
|
|
@ -196,8 +196,11 @@ static const struct Curl_handler * const protocols[] = {
|
|||
&Curl_handler_tftp,
|
||||
#endif
|
||||
|
||||
#ifdef USE_LIBSSH2
|
||||
#if defined(USE_LIBSSH2) || defined(USE_LIBSSH)
|
||||
&Curl_handler_scp,
|
||||
#endif
|
||||
|
||||
#if defined(USE_LIBSSH2)
|
||||
&Curl_handler_sftp,
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue