- Feb 06, 2019
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Feb 05, 2019
-
-
Daniel Gustafsson authored
Commit 7a09b52c introduced support for the draft-ietf-httpbis-cookie-alone-01 cookie draft, and while the entry was removed from the TODO it was mistakenly left here. Fix by removing and rewording the entry slightly. Closes #3530 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Etienne Simard authored
Fix grammatical errors making the document read better. Also fixes a typo. Closes #3525 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
-
- Feb 04, 2019
-
-
Julian Z authored
Fixes #3518 Closes #3522
-
- Feb 01, 2019
-
-
Daniel Stenberg authored
Stick to "Schannel" everywhere. The configure option --with-winssl is kept to allow existing builds to work but --with-schannel is added as an alias. Closes #3504
-
- Jan 31, 2019
-
-
John Marshall authored
Use an ephemeral port number here; previously the example had 8080 which could be confusing as the common web server port number might be misinterpreted as suggesting this option affects the remote port. URL: https://curl.haxx.se/mail/lib-2019-01/0084.html Closes #3513
-
- Jan 29, 2019
-
-
Gisle Vanem authored
A backslash should be escaped in Roff / Troff.
-
Jay Satiro authored
By default WinSSL selects and send a client certificate automatically, but for privacy and consistency we should offer an option to disable the default auto-send behavior. Reported-by: Jeroen Ooms Closes https://github.com/curl/curl/issues/2262
-
- Jan 21, 2019
-
-
Daniel Stenberg authored
Closes #3289 [skip ci]
-
- Jan 16, 2019
-
-
Alessandro Ghedini authored
-
Sergei Nikulov authored
-
- Jan 10, 2019
-
-
Daniel Stenberg authored
Closes #3125
-
Daniel Stenberg authored
Closes #3229
-
- Jan 09, 2019
-
-
Katsuhiko YOSHIDA authored
Closes #3417
-
Daniel Stenberg authored
[skip ci]
-
- Jan 03, 2019
-
-
Daniel Stenberg authored
Closes #3431
-
Daniel Stenberg authored
Reviewed-by: Daniel Gustafsson Closes #3432
-
- Jan 02, 2019
-
-
Rikard Falkeborn authored
Add a few missing examples to make `make examples` not leave the workspace in a dirty state. Closes #3427 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
-
Daniel Gustafsson authored
Add Adrian Burcea who made the artwork for the curl://up 2018 event which was held in Stockholm, Sweden.
-
Daniel Gustafsson authored
When a non-empty list is appended to, and used as the returnvalue, the list pointer can leak in case of an allocation failure in the curl_slist_append() call. This is correctly handled in curl code usage but we weren't explicitly pointing it out in the API call documentation. Fix by extending the RETURNVALUE manpage section and example code. Closes #3424 Reported-by: dnivras on github Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
- Jan 01, 2019
-
-
Daniel Stenberg authored
Researched-by: Tae Wong
-
- Dec 31, 2018
-
-
Daniel Stenberg authored
Due to a report of a missing name in THANKS I manually went through an old CHANGES.0 file and added many previously missing names here.
-
- Dec 30, 2018
-
-
Daniel Stenberg authored
Reported-by: Tae Wong
-
Daniel Stenberg authored
-
- Dec 27, 2018
-
-
Claes Jakobsson authored
This adds support for wildcard hosts in CURLOPT_RESOLVE. These are try-last so any non-wildcard entry is resolved first. If specified, any host not matched by another CURLOPT_RESOLVE config will use this as fallback. Example send a.com to 10.0.0.1 and everything else to 10.0.0.2: curl --resolve *:443:10.0.0.2 --resolve a.com:443:10.0.0.1 \ https://a.com https://b.com This is probably quite similar to using: --connect-to a.com:443:10.0.0.1:443 --connect-to :443:10.0.0.2:443 Closes #3406 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
- Dec 25, 2018
-
-
Daniel Gustafsson authored
The project bug tracker is no longer hosted at sourceforge but is now hosted on the curl Github page. Update the FAQ to reflect. Closes #3410 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
- Dec 21, 2018
-
-
Daniel Stenberg authored
Added CURLOPT_HTTP09_ALLOWED and --http0.9 for this purpose. For now, both the tool and library allow HTTP/0.9 by default. docs/DEPRECATE.md lays out the plan for when to reverse that default: 6 months after the 7.64.0 release. The options are added already now so that applications/scripts can start using them already now. Fixes #2873 Closes #3383
-
- Dec 14, 2018
-
-
Daniel Stenberg authored
Closes #3354
-
Daniel Stenberg authored
-
Ayoub Boudhar authored
This adds the CURLOPT_TRAILERDATA and CURLOPT_TRAILERFUNCTION options that allow a callback based approach to sending trailing headers with chunked transfers. The test server (sws) was updated to take into account the detection of the end of transfer in the case of trailing headers presence. Test 1591 checks that trailing headers can be sent using libcurl. Closes #3350
-
- Dec 13, 2018
-
-
Daniel Gustafsson authored
Only allow secure origins to be able to write cookies with the 'secure' flag set. This reduces the risk of non-secure origins to influence the state of secure origins. This implements IETF Internet-Draft draft-ietf-httpbis-cookie-alone-01 which updates RFC6265. Closes #2956 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Daniel Stenberg authored
Reported-by: Tobias Lindgren Pointed out in #3367 Closes #3368
-
- Dec 12, 2018
-
-
Daniel Stenberg authored
-
- Dec 11, 2018
-
-
Patrick Monnerat authored
Prior to 7.56.0, fieldnames and filenames were set in Content-Disposition header without special processing: this may lead to invalid RFC 822 quoted-strings. 7.56.0 introduces escaping of backslashes and double quotes in these names: mention it in the documentation. Reported-by: daboul on github Closes #3361
-
- Dec 03, 2018
-
-
Daniel Gustafsson authored
Forgetting to bump the year in the copyright clause when hacking has been quite common among curl developers, but a traditional checksrc check isn't a good fit as it would penalize anyone hacking on January 1st (among other things). This adds a more selective COPYRIGHTYEAR check which intends to only cover the currently hacked on changeset. The check for updated copyright year is currently not enforced on all files but only on files edited and/or committed locally. This is due to the amount of files which aren't updated with their correct copyright year at the time of their respective commit. To further avoid running this expensive check for every developer, it adds a new local override mode for checksrc where a .checksrc file can be used to turn on extended warnings locally. Closes #3303 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
Daniel Stenberg authored
Closes #3335 [ci skip]
-
- Nov 30, 2018
-
-
Daniel Stenberg authored
This backpedals back the documents to the state before bountygraph. Closes #3311
-
- Nov 29, 2018
-
-
Daniel Gustafsson authored
Commit 7c5837e7 deprecated the option making it a manual code-edit operation to turn it back on. The removal process has thus started and is now documented in docs/DEPRECATE.md so remove from the TODO to avoid anyone looking for something to pick up spend cycles on an already in-progress entry. Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-
- Nov 26, 2018
-
-
Daniel Gustafsson authored
The variable definition had a small typo making it declare another variable then the intended. Closes #3304 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
-