- Dec 26, 2017
-
-
Gisle Vanem authored
- Move the size modifier detection code from limit-rate to its own function so that it can also be used with max-filesize. Size modifiers are the suffixes such as G (gigabyte), M (megabyte) etc. For example --max-filesize 1G Ref: https://curl.haxx.se/mail/archive-2017-12/0000.html Closes https://github.com/curl/curl/pull/2179
-
- Dec 22, 2017
-
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Steve Holme authored
-
Dimitrios Apostolou authored
Closes https://github.com/curl/curl/pull/2186
-
Mattias Fornander authored
Closes https://github.com/curl/curl/pull/2185
-
- Dec 20, 2017
-
-
Patrick Monnerat authored
Move curl_mime_initpart() and curl_mime_cleanpart() calls to lower-level functions dealing with UserDefined structure contents. This avoids memory leakages on curl-generated part mime headers. New test 2073 checks this using the cli tool --next option: it triggers a valgrind error if bug is present. Bug: https://curl.haxx.se/mail/lib-2017-12/0060.html Reported-by: Martin Galvan
-
Patrick Monnerat authored
- When zlib version is < 1.2.0.4, process gzip trailer before considering extra data as an error. - Inflate with Z_BLOCK instead of Z_SYNC_FLUSH to maximize correct data and minimize corrupt data output. - Do not try to restart deflate decompression in raw mode if output has started or if the leading data is not available anymore. - New test 232 checks inflating raw-deflated content. Closes #2068
-
Patrick Monnerat authored
Some error codes were not yet defined in brotli 0.6.0: do not issue code for them in this case.
-
- Dec 13, 2017
-
-
Daniel Stenberg authored
Bug: #2175 [ci skip]
-
- Dec 12, 2017
-
-
Daniel Stenberg authored
scan-build would warn on a potential access of an uninitialized buffer. I deem it a false positive and had to add this somewhat ugly work-around to silence it.
-
Daniel Stenberg authored
A scan-build warning.
-
Daniel Stenberg authored
This broke in 07cb27c9. Make sure to return 'result' properly. Pointed out by scan-build!
-
Daniel Stenberg authored
Bug: #2174
-
Michael Kaufmann authored
Follow-up to c92d2e14 Closes #2172
-
Daniel Stenberg authored
... to make it clearer that the options want address-only, while the headers in an email can also have the real name. Assisted-by: Sean MacLennan
-
Daniel Stenberg authored
... as I reran the contrithanks script after the mailmap name fixups.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... for the CURLOPT_TIMEOUT, CURLOPT_CONNECTTIMEOUT and CURLOPT_SERVER_RESPONSE_TIMEOUT range checks. Reported-by: Dominik Hölzl Bug: https://curl.haxx.se/mail/lib-2017-12/0037.html Closes #2173
-
Dmitry Kostjuchenko authored
Fixed undefined symbol of getenv() which does not exist when compiling for Windows 10 App (CURL_WINDOWS_APP). Replaced getenv() with curl_getenv() which is aware of getenv() absence when CURL_WINDOWS_APP is defined. Closes #2171
-
- Dec 11, 2017
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Suggested-by: Rainer Canavan Closes #2126
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Dec 10, 2017
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
This reverts commit 9ffad8eb. It was actually added rather recently in 8e8afa82 due to a crash that would otherwise happen in the RTSP code. As I don't think we've fixed that behavior yet, we better keep this work-around until we have fixed it better.
-
Michael Kaufmann authored
-
Michael Kaufmann authored
-
Daniel Stenberg authored
Prune the DNS cache immediately after the dns entry is unlocked in multi_done. Timed out entries will then get discarded in a more orderly fashion. Test506 is updated Reported-by: Oleg Pudeyev Fixes #2169 Closes #2170
-
Daniel Stenberg authored
-
Jay Satiro authored
Prior to this change SSLKEYLOGFILE used line buffering on WIN32 just like it does for other platforms. However, the Windows CRT does not actually support line buffering (_IOLBF) and will use full buffering (_IOFBF) instead. We can't use full buffering because multiple processes may be writing to the file and that could lead to corruption, and since full buffering is the only buffering available this commit disables buffering for Windows SSLKEYLOGFILE entirely (_IONBF). Ref: https://github.com/curl/curl/pull/1346#issuecomment-350530901
-
- Dec 09, 2017
-
-
Daniel Stenberg authored
... to help users understand what is or isn't done!
-
Daniel Stenberg authored
-
John DeHelian authored
Closes #1900
-
- Dec 08, 2017
-
-
Richard Alcock authored
- Change "never does nothing" double-negative to "never does anything". Closes https://github.com/curl/curl/pull/2168
-
Daniel Stenberg authored
These are OS/2-specific things added to the code in the year 2000. They were always ugly. If there's any user left, they still don't need it done this way. Closes #2166
-
Jay Satiro authored
- Allow proxy_ssl to be checked for pending data even when connssl does not yet have an SSL handle. This change is for posterity. Currently there doesn't seem to be a code path that will cause a pending data check when proxyssl could have pending data and the connssl handle doesn't yet exist [1]. [1]: Recall that an https proxy connection starts out in connssl but if the destination is also https then the proxy SSL backend data is moved from connssl to proxyssl, which means connssl handle is temporarily empty until an SSL handle for the destination can be created. Ref: https://github.com/curl/curl/commit/f4a6238#commitcomment-24396542 Closes https://github.com/curl/curl/pull/1916
-