- Dec 08, 2017
-
-
Daniel Stenberg authored
That data is only ever used by the CURLOPT_INTERLEAVEFUNCTION callback and that option isn't set or used by the curl tool! Updates the 9 tests that verify --libcurl Closes #2167
-
Daniel Stenberg authored
... error messages are _not_ sent to stderr if this is not set.
-
Michael Felt authored
Fixes #2076 Closes #2125
-
- Dec 07, 2017
-
-
Daniel Stenberg authored
Make it use a max 10Hz update frequency for this case as well. Return early if the "point" hasn't moved since last invoke. Reported-by: Elliot Saba Fixes #2158 Closes #2163
-
Daniel Stenberg authored
...the former link is dead. Reported-by: Frank Gevaerts
-
Zachary Seguin authored
Fixes #2088 Closes #2157
-
Per Malmberg authored
... to allow build on older Linux dists (specifically CentOS 4.8 on gcc 4.8.5) Closes #2160
-
- Dec 06, 2017
-
-
Daniel Stenberg authored
-
Stepan Broz authored
... to aid debugging openldap library using its built-in debug messages. Closes #2159
-
Daniel Stenberg authored
... due it relying on pthreads to link.
-
Daniel Stenberg authored
... and bump next release version to 7.58.0
-
- Dec 05, 2017
-
-
Jan Ehrhardt authored
... as in "file://c:\some\path\curl.out" Reviewed-by: Matthew Kerwin Closes #2154
-
Randall S. Becker authored
-
Randall S. Becker authored
Needed by HPE NonStop NSE and NSX systems Fixes #2146 Closes #2155
-
Daniel Stenberg authored
Lists all SSL backends that were enabled at build-time. Suggested-by: Oleg Pudeyev Fixes #2128
-
Daniel Stenberg authored
Connections that are used for HTTP/1.1 Pipelining or HTTP/2 multiplexing only get additional transfers added to them if the existing connection is held by the same multi or easy handle. libcurl does not support doing HTTP/2 streams in different threads using a shared connection. Closes #2152
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
If the lock is released before the dealings with the bundle is over, it may have changed by another thread in the mean time. Fixes #2132 Fixes #2151 Closes #2139
-
Daniel Stenberg authored
... by removing a superfluous NULL pointer check that also confuses Coverity. Fixes #2143 Closes #2153
-
Daniel Stenberg authored
For pop3/imap/smtp, added test 891 to somewhat verify the pop3 case. For this, I enhanced the pingpong test server to be able to send back responses with LF-only instead of always using CRLF. Closes #2150
-
- Dec 04, 2017
-
-
Daniel Stenberg authored
Figured out while reviewing code in the libssh backend. The pointer was checked for NULL after having been dereferenced, so we know it would always equal true or it would've crashed. Pointed-out-by: Nikos Mavrogiannopoulos Bug #2143 Closes #2148
-
Daniel Stenberg authored
-
Nikos Mavrogiannopoulos authored
The behavior is now equivalent to ssh.c when SSH_SFTP_QUOTE_STATVFS handling fails. Fixes #2142
-
Guitared authored
Closes #2145
-
- Dec 03, 2017
-
-
Nikos Mavrogiannopoulos authored
The previous code was incorrectly following the libssh2 error detection for libssh2_sftp_statvfs, which is not correct for libssh's sftp_statvfs. Fixes #2142 Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-
Nikos Mavrogiannopoulos authored
Fixes #2141 Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-
- Dec 02, 2017
-
-
Daniel Stenberg authored
- remove superfluous NULL check which otherwise tricks the static code analyzers to assume NULL pointer dereferences. - fix fallthrough in switch() - indent mistake
-
Daniel Stenberg authored
Removes another #ifdef for BoringSSL Pointed-out-by: David Benjamin Closes #2134
-
Jay Satiro authored
.. since now mac osx image expects pip2 or pip3, and doesn't know pip: 0.01s$ pip install --user cpp-coveralls /Users/travis/.travis/job_stages: line 57: pip: command not found Ref: https://github.com/travis-ci/travis-ci/issues/8829 Closes https://github.com/curl/curl/pull/2133
-
- Dec 01, 2017
-
-
Nikos Mavrogiannopoulos authored
This SFTP test fails with libssh back-end due to failure to verify the peer. Disable peer verification in the test as there seems to be the intention of the test. Note that the libssh back-end automatically verifies the peer's host using the default known_hosts file. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-
Nikos Mavrogiannopoulos authored
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>
-
Nikos Mavrogiannopoulos authored
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-
Nikos Mavrogiannopoulos authored
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-
Nikos Mavrogiannopoulos authored
This brings its in sync with the error code returned by the libssh backend. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-
Nikos Mavrogiannopoulos authored
That also updates tests to expect the right error code libssh2 back-end returns CURLE_SSH error if the remote file is not found. Expect instead CURLE_REMOTE_FILE_NOT_FOUND which is sent by the libssh backend. Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-
Nikos Mavrogiannopoulos authored
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>
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
W. Mark Kubacki authored
Absent any 'symbol map' or script to limit what gets exported, static linking of libraries previously resulted in a libcurl with curl's and those other symbols being (re-)exported. This did not happen if 'versioned symbols' were enabled (which is not the default) because then a version script is employed. This limits exports to everything starting in 'curl_*'., which is what "libcurl.vers" exports. This avoids strange side-effects such as with mixing methods from system libraries and those erroneously offered by libcurl. Closes #2127
-