diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-08-05 09:26:04 +0000 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-08-17 03:32:00 -0400 |
commit | b7b4dc0d49543175ab0d9bb1cdc257a2d7f7cf0a (patch) | |
tree | 40a6f41fe368481822bc8807ef219cf279d7a500 /packages/OS400 | |
parent | d18941ea175503ba0cf0792c1622c7a4a7c4b880 (diff) | |
download | curl-b7b4dc0d49543175ab0d9bb1cdc257a2d7f7cf0a.tar.gz |
ssh: add the ability to enable compression (for SCP/SFTP)
The required low-level logic was already available as part of
`libssh2` (via `LIBSSH2_FLAG_COMPRESS` `libssh2_session_flag()`[1]
option.)
This patch adds the new `libcurl` option `CURLOPT_SSH_COMPRESSION`
(boolean) and the new `curl` command-line option `--compressed-ssh`
to request this `libssh2` feature. To have compression enabled, it
is required that the SSH server supports a (zlib) compatible
compression method and that `libssh2` was built with `zlib` support
enabled.
[1] https://www.libssh2.org/libssh2_session_flag.html
Ref: https://github.com/curl/curl/issues/1732
Closes https://github.com/curl/curl/pull/1735
Diffstat (limited to 'packages/OS400')
-rw-r--r-- | packages/OS400/curl.inc.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/OS400/curl.inc.in b/packages/OS400/curl.inc.in index e4d2d30ca..41b6be190 100644 --- a/packages/OS400/curl.inc.in +++ b/packages/OS400/curl.inc.in @@ -1312,6 +1312,8 @@ d c 10264 d CURLOPT_SUPPRESS_CONNECT_HEADERS... d c 00265 + d CURLOPT_SSH_COMPRESSION... + d c 00268 * /if not defined(CURL_NO_OLDIES) d CURLOPT_FILE c 10001 |