Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-29 | curl_strequal.3: fix typo in SYNOPSIS | Daniel Stenberg | |
Reported-by: Jesse Chisholm Fixes #1623 | |||
2017-06-28 | CURLOPT_SOCKS5_AUTH: allowed methods for SOCKS5 proxy auth | Kamil Dudka | |
If libcurl was built with GSS-API support, it unconditionally advertised GSS-API authentication while connecting to a SOCKS5 proxy. This caused problems in environments with improperly configured Kerberos: a stock libcurl failed to connect, despite libcurl built without GSS-API connected fine using username and password. This commit introduces the CURLOPT_SOCKS5_AUTH option to control the allowed methods for SOCKS5 authentication at run time. Note that a new option was preferred over reusing CURLOPT_PROXYAUTH for compatibility reasons because the set of authentication methods allowed by default was different for HTTP and SOCKS5 proxies. Bug: https://curl.haxx.se/mail/lib-2017-01/0005.html Closes https://github.com/curl/curl/pull/1454 | |||
2017-06-24 | CURLINFO_REDIRECT_URL.3: mention the CURLOPT_MAXREDIRS case | Daniel Stenberg | |
... supported since 7.54.1 | |||
2017-06-21 | --request-target: instead of --strip-path-slash | Daniel Stenberg | |
... and CURLOPT_REQUEST_TARGET instead of CURLOPT_STRIP_PATH_SLASH. This option instead provides the full "alternative" target to use in the request, instead of extracting the path from the URL. Test 1298 and 1299 updated accordingly. Idea-by: Evert Pot Suggestion: https://daniel.haxx.se/blog/2017/06/19/options-with-curl/comment-page-1/#comment-18373 Closes #1593 | |||
2017-06-19 | http: add --strip-path-slash and CURLOPT_STRIP_PATH_SLASH | Daniel Stenberg | |
... to enable sending "OPTIONS *" which wasn't possible previously. This option currently only works for HTTP. Added test cases 1298 + 1299 to verify Fixes #1280 Closes #1462 | |||
2017-06-19 | getinfo: return sizes as curl_off_t | Daniel Stenberg | |
This change introduces new alternatives for the existing six curl_easy_getinfo() options that return sizes or speeds as doubles. The new versions are named like the old ones but with an appended '_T': CURLINFO_CONTENT_LENGTH_DOWNLOAD_T CURLINFO_CONTENT_LENGTH_UPLOAD_T CURLINFO_SIZE_DOWNLOAD_T CURLINFO_SIZE_UPLOAD_T CURLINFO_SPEED_DOWNLOAD_T CURLINFO_SPEED_UPLOAD_T Closes #1511 | |||
2017-06-18 | CURLOPT_PREQUOTE.3: spellfix man page reference | Daniel Stenberg | |
2017-06-18 | TODO: implement support for CURLOPT_PREQUOTE with SFTP | Daniel Stenberg | |
... also updated the CURLOPT_PREQUOTE.3 man page to mention the correct protocol support. Closes #1514 | |||
2017-06-14 | http-proxy: do the HTTP CONNECT process entirely non-blocking | Daniel Stenberg | |
Mentioned as a problem since 2007 (8f87c15bdac63) and of course it existed even before that. Closes #1547 | |||
2017-06-01 | typecheck-gcc.h: separate getinfo slist checks from other pointers | Daniel Stenberg | |
Fixes #1524 | |||
2017-05-31 | CURLOPT_SSH_KEY*.3: typos | Daniel Stenberg | |
Reported-by: Gisle Vanem | |||
2017-05-31 | CURLOPT_STREAM_DEPENDS.3: typo | Daniel Stenberg | |
2017-05-31 | CURLOPT_FNMATCH_FUNCTION.3: also modified example to avoid fcpp issues | Daniel Stenberg | |
2017-05-31 | CURLOPT_FNMATCH_DATA.3: modified example to avoid fcpp issues | Daniel Stenberg | |
2017-05-31 | opts: more than 100 more examples for man pages... | Daniel Stenberg | |
2017-05-31 | CURLOPT_PROXY.3: fix test 1140 breakage | Daniel Stenberg | |
2017-05-30 | opts: more examples added to man pages | Daniel Stenberg | |
2017-05-30 | docs: clarify NO_PROXY further | Daniel Stenberg | |
Fixes #1208 | |||
2017-05-30 | CURLOPT_PROXY.3: describe the environment variables more | Daniel Stenberg | |
2017-05-27 | opts: more examples added in option man pages | Daniel Stenberg | |
2017-05-25 | docs/CURLOPT_SSLVERSION.3: Correct define name in example | Phil Crump | |
Closes #1509 | |||
2017-05-15 | SecureTransport/DarwinSSL: Implement public key pinning | moparisthebest | |
Closes #1400 | |||
2017-05-15 | man pages: fix example syntax errors | Daniel Stenberg | |
follow-up to 5ddad099b42b50 | |||
2017-05-15 | docs/libcurl/opts: added more examples in man pages | Daniel Stenberg | |
2017-05-15 | CURLOPT_HTTPPROXYTUNNEL: clarify, add example | Daniel Stenberg | |
2017-05-13 | url.c: add a compile-time check that CURL_MAX_WRITE_SIZE is large enough | Dan Fandrich | |
Some code (e.g. Curl_fillreadbuffer) assumes that this buffer is not exceedingly tiny and will break if it is. This same check is already done at run time in the CURLOPT_BUFFERSIZE option. | |||
2017-05-06 | opts: fix bad example formatting \n => \\n | Daniel Stenberg | |
...to render properly nroff. | |||
2017-05-06 | opts: examples added to 8 more libcurl option man pages | Daniel Stenberg | |
2017-05-05 | docs/opts: 24 more man pages now have examples | Daniel Stenberg | |
2017-05-05 | docs/opts: 23 more man pages now have examples | Daniel Stenberg | |
2017-05-05 | tests/server: run checksrc by default in debug-builds | Daniel Stenberg | |
2017-05-05 | curl_slist_append.3: clarify a NULL input creates a new list | Daniel Stenberg | |
2017-05-04 | CURLINFO_REDIRECT_URL.3: add example | Daniel Stenberg | |
2017-05-04 | CURLINFO_EFFECTIVE_URL.3: add example | Daniel Stenberg | |
2017-04-25 | nss: load libnssckbi.so if no other trust is specified | Kamil Dudka | |
The module contains a more comprehensive set of trust information than supported by nss-pem, because libnssckbi.so also includes information about distrusted certificates. Reviewed-by: Kai Engert Closes #1414 | |||
2017-04-10 | libcurl-thread.3: fixed a bad macro that caused test 1140 to fail | Dan Fandrich | |
2017-04-09 | libcurl-thread.3: also mention threaded-resolver | Daniel Stenberg | |
Reported-by: Alex Bligh Bug: https://curl.haxx.se/mail/lib-2017-04/0044.html | |||
2017-04-08 | CURLINFO_SCHEME.3: fix variable type | Jay Satiro | |
- Change documented param type to char ** from incorrect long *. | |||
2017-04-03 | docs: added examples for CURLINFO_FILETIME.3 and CURLOPT_FILETIME.3 | Daniel Stenberg | |
2017-03-30 | cmake: fix build with cmake 2.8.12.2 | Peter Wu | |
For some reason, CMake 2.8.12.2 did not expand the list argument in a single DEPENDS argument. Remove the quotes, so it gets expanded into multiple arguments for add_custom_command and add_custom_target. Fixes https://github.com/curl/curl/issues/1370 Closes #1372 | |||
2017-03-30 | cmake: add cmake file in docs/libcurl/opts/ to dist | Daniel Stenberg | |
2017-03-30 | cmake: add more missing files to the dist | Daniel Stenberg | |
2017-03-29 | make: use the variable MAKE for recursive calls | Maksim Stsepanenka | |
Closes #1366 | |||
2017-03-26 | spelling fixes | klemens | |
Closes #1356 | |||
2017-03-22 | CURLINFO_PRIMARY_IP.3: add example | Daniel Stenberg | |
2017-03-21 | mbedtls: add support for CURLOPT_SSL_CTX_FUNCTION | Ales Mlakar | |
Ref: https://curl.haxx.se/mail/lib-2017-02/0097.html Closes https://github.com/curl/curl/pull/1272 | |||
2017-03-21 | cmake: add support for building HTML and PDF docs | Peter Wu | |
Note that for some reason there is this warning (that also exists with autotools, added since curl-7_15_1-94-ga718cb05f): docs/libcurl/curl_multi_socket_all.3:1: can't open `man3/curl_multi_socket.3': No such file or directory Additionally, adjust the roffit --mandir option to support creating links when doing out-of-tree builds. Ref: https://github.com/curl/curl/pull/1288 | |||
2017-03-21 | docs: split file lists into Makefile.inc | Peter Wu | |
For easier sharing with CMake. The contents were reformatted to use two-space indent and expanded tabs (matching lib/Makefile.common). Ref: https://github.com/curl/curl/pull/1288 | |||
2017-03-16 | CURLINFO_LOCAL_PORT.3: fix typo | Jay Satiro | |
2017-03-16 | CURLINFO_LOCAL_PORT.3: added example | Daniel Stenberg | |