- Feb 24, 2016
-
-
Daniel Stenberg authored
... as when pipelining is used, we read things into a unified buffer and we don't do that with HTTP/2. This could then easily make programs that set CURLMOPT_PIPELINING = CURLPIPE_HTTP1|CURLPIPE_MULTIPLEX to get data intermixed or plain broken between HTTP/2 streams. Reported-by: Anders Bakken
-
Patrick Monnerat authored
-
Jay Satiro authored
The two options are almost the same, except in the case of OpenSSL: CURLINFO_TLS_SESSION OpenSSL session internals is SSL_CTX *. CURLINFO_TLS_SSL_PTR OpenSSL session internals is SSL *. For backwards compatibility we couldn't modify CURLINFO_TLS_SESSION to return an SSL pointer for OpenSSL. Also, add support for the 'internals' member to point to SSL object for the other backends axTLS, PolarSSL, Secure Channel, Secure Transport and wolfSSL. Bug: https://github.com/curl/curl/issues/234 Reported-by: <dkjjr89@users.noreply.github.com> Bug: https://curl.haxx.se/mail/lib-2015-09/0127.html Reported-by: Michael König
-
- Feb 23, 2016
-
-
Daniel Stenberg authored
The internal Curl_done() function uses Curl_expire() at times and that uses the timeout list. Better clean up the list once we're done using it. This caused a segfault. Reported-by: 蔡文凱 Bug: https://curl.haxx.se/mail/lib-2016-02/0097.html
-
Kamil Dudka authored
DSA is no longer supported by OpenSSH 7.0, which causes all SCP/SFTP test cases to be skipped. Using RSA for host authentication works with both old and new versions of OpenSSH. Reported-by: Karlson2k Closes #676
-
Jay Satiro authored
- Add tests. - Add an example to CURLOPT_TFTP_NO_OPTIONS.3. - Add --tftp-no-options to expose CURLOPT_TFTP_NO_OPTIONS. Bug: https://github.com/curl/curl/issues/481
-
Michael Koenig authored
Some TFTP server implementations ignore the "TFTP Option extension" (RFC 1782-1784, 2347-2349), or implement it in a flawed way, causing problems with libcurl. Another switch for curl_easy_setopt "CURLOPT_TFTP_NO_OPTIONS" is introduced which prevents libcurl from sending TFTP option requests to a server, avoiding many problems caused by faulty implementations. Bug: https://github.com/curl/curl/issues/481
-
- Feb 21, 2016
-
-
Karlson2k authored
Closes #672
-
- Feb 20, 2016
-
-
Jay Satiro authored
-
Viktor Szakats authored
Sync with lib/Makefile.m32 which already uses those variables. Bug: https://github.com/curl/curl/pull/670
-
Dan Fandrich authored
-
Emil Lerner authored
If any parameter in a HTTP DIGEST challenge message is present multiple times, memory allocated for all but the last entry should be freed. Bug: https://github.com/curl/curl/pull/667
-
- Feb 19, 2016
-
-
Dan Fandrich authored
Reported-by: <neex@users.noreply.github.com>
-
Jay Satiro authored
Bug: https://github.com/curl/curl/issues/666 Reported-by: <baumanj@users.noreply.github.com>
-
Jay Satiro authored
Bug: https://github.com/curl/curl/issues/666 Reported-by: <baumanj@users.noreply.github.com>
-
- Feb 18, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
First version, try this out!
-
Daniel Stenberg authored
To hide github specific files somewhat from the rest.
-
Daniel Stenberg authored
-
- Feb 17, 2016
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Reported-By: Gisle Vanem
-
Daniel Stenberg authored
At one point during the development of HTTP/2, the commit 133cdd29 introduced automatic decompression of Content-Encoding as that was what the spec said then. Now however, HTTP/2 should work the same way as HTTP/1 in this regard. Reported-by: Kazuho Oku Closes #661
-
- Feb 16, 2016
-
-
Tatsuhiro Tsujikawa authored
nghttp2 callback deals with TLS layer and therefore the header does not need to be broken into chunks. Bug: https://github.com/curl/curl/issues/659 Reported-by: Kazuho Oku
-
- Feb 15, 2016
-
-
Viktor Szakats authored
-
Viktor Szakats authored
by using API instead of accessing an internal structure. This is required starting OpenSSL 1.1.0-pre3. Closes #650
-
Daniel Stenberg authored
-
- Feb 14, 2016
-
-
Clint Clayton authored
Change the example in the docs for CURLOPT_CONNECTTIMEOUT_MS to use CURLOPT_CONNECTTIMEOUT_MS instead of CURLOPT_CONNECTTIMEOUT. Closes #653
-
Daniel Stenberg authored
-
David Byron authored
libssh2_scp_recv2 is introduced in libssh2 1.7.0 - to be released "any day now. Closes #451
-
Shine Fan authored
Bug: https://github.com/curl/curl/pull/651
-
- Feb 13, 2016
-
-
Dan Fandrich authored
-
Jay Satiro authored
Remove NOTES section, it's no longer needed since we aren't setting the errorlevel and more importantly the recently updated URL in the comments is causing some unusual behavior that breaks the script. Closes https://github.com/curl/curl/issues/649
-
- Feb 12, 2016
-
-
Kamil Dudka authored
The behavior has been clarified in CURLOPT_FTP_USE_{EPRT,EPSV}.3 man pages since curl-7_12_3~131. This patch makes it clear in the curl.1 man page, too. Bug: https://bugzilla.redhat.com/1305970
-
Daniel Stenberg authored
As the winbuild/* stuff uses it!
-
Daniel Stenberg authored
On 32bit systems, make sure we don't overflow and return funky values for very large time differences. Reported-by: Anders Bakken Closes #646
-