Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-14 | examples/ftpuploadresume.c: use portable code | Daniel Stenberg | |
... converted from the MS specific _snscanf() | |||
2017-08-13 | RELEASE-NOTES/THANKS: curl 7.55.1 release time | Daniel Stenberg | |
2017-08-12 | connect-to.d: better language | Daniel Stenberg | |
2017-08-12 | connect-to.d: clarified | Daniel Stenberg | |
2017-08-12 | docs: fix typo funtion -> function | Alessandro Ghedini | |
Closes #1770 | |||
2017-08-12 | docs: fix grammar in CURL_SSLVERSION_MAX_DEFAULT description | Alessandro Ghedini | |
2017-08-12 | docs: fix typo stuct -> struct | Alessandro Ghedini | |
2017-08-09 | make install: add 8 missing man pages to the installation | Daniel Stenberg | |
2017-08-09 | THANKS: 20 new contributors in 7.55.0 | Daniel Stenberg | |
2017-08-08 | docs/comments: Update to secure URL versions | Viktor Szakats | |
Closes #1741 | |||
2017-08-02 | CURLOPT_NETRC.3: fix typo in 7e48aa386156f9c2 | Daniel Stenberg | |
Reported-by: Viktor Szakats | |||
2017-08-02 | CURLOPT_NETRC.3: mention the file name on windows | Daniel Stenberg | |
... and CURLOPT_NETRC_FILE(3). | |||
2017-08-01 | BUGS: improved phrasing about security bugs | Daniel Stenberg | |
Reported-by: Max Dymond | |||
2017-08-01 | BUGS: clarify how to report security related bugs | Daniel Stenberg | |
2017-07-30 | include.d: clarify --include is only for response headers | Jay Satiro | |
Follow-up to 171f8de and de6de94. Bug: https://github.com/curl/curl/commit/de6de94#commitcomment-23370851 Reported-by: Daniel Stenberg | |||
2017-07-28 | include.d: clarify that it concerns the response headers | Daniel Stenberg | |
Reported-by: olesteban at github Fixes #1704 | |||
2017-07-07 | CURLOPT_POSTFIELDS.3: explain the 100-continue magic better | Daniel Stenberg | |
2017-07-07 | curl_easy_escape.3: mention the (lack of) encoding | Daniel Stenberg | |
Fixes #1612 Reported-by: Jeroen Ooms | |||
2017-07-05 | TODO: 1.10 auto-detect proxy | Daniel Stenberg | |
Closes #1572 | |||
2017-07-05 | TODO: HTTP proxy CONNECT is non-blocking now | Daniel Stenberg | |
2017-06-30 | make: build the docs subdir only from within src | Daniel Stenberg | |
... and don't build at all in include Prompted-by-work-by: Simon Warta Ref: #1590 Closes #1591 | |||
2017-06-29 | curl_strequal.3: fix typo in SYNOPSIS | Daniel Stenberg | |
Reported-by: Jesse Chisholm Fixes #1623 | |||
2017-06-28 | curl --socks5-{basic,gssapi}: control socks5 auth | Kamil Dudka | |
Closes https://github.com/curl/curl/pull/1454 | |||
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-22 | CONTRIBUTE.md: mention the out-of-tree build test too | Daniel Stenberg | |
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: update the TOC too | 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-16 | curl: prevent binary output spewed to terminal | Daniel Stenberg | |
... unless "--output -" is used. Binary detection is done by simply checking for a binary zero in early data. Added test 1425 1426 to verify. Closes #1512 | |||
2017-06-16 | Makefile.m32: enable -W for MinGW32 build | Marcel Raad | |
The configure-based build also has this in addition to -Wall. Closes https://github.com/curl/curl/pull/1578 | |||
2017-06-15 | TODO: the generated include file is gone | Daniel Stenberg | |
... since commit 73a2fcea0b | |||
2017-06-15 | curl: allow --header and --proxy-header read from file | Daniel Stenberg | |
So many headers can be provided as @filename. Suggested-by: Timothe Litt Closes #1486 | |||
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-14 | includes: remove curl/curlbuild.h and curl/curlrules.h | Daniel Stenberg | |
Rely entirely on curl/system.h now. Introduced in Aug 2008 with commit 14240e9e109f. Now gone. Fixes #1456 | |||
2017-06-14 | release: 7.54.1 | Daniel Stenberg | |
2017-06-12 | BINDINGS: update SP-Forth and OCaml urls | ygrek | |
2017-06-09 | RELEASE-PROCEDURE: updated future release dates | Daniel Stenberg | |
2017-06-08 | examples/multi-uv.c: fix deprecated symbol | Ryuichi KAWAMATA | |
Closes #1557 | |||
2017-06-03 | BINDINGS: add Ring binding | Mahmoud Samir Fayed | |
Closes https://github.com/curl/curl/pull/1539 | |||
2017-06-04 | CONTRIBUTE.md: mention tests done on pull requests | Daniel Stenberg | |
2017-06-01 | typecheck-gcc.h: check CURLINFO_CERTINFO | Daniel Stenberg | |
... and update the certinfo.c example accordingly. Fixes https://github.com/curl/curl/issues/846 | |||
2017-06-01 | typecheck-gcc.h: separate getinfo slist checks from other pointers | Daniel Stenberg | |
Fixes #1524 | |||
2017-05-31 | examples/externalsocket.c: s/closesocket/closecb | Daniel Stenberg | |
... since closesocket is a function in WinSock. Reported-by: Marcel Raad Bug: https://github.com/curl/curl/commit/55fcb8485914700132fd1854c9509b66c955efbe#co mmitcomment-22347818 | |||
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 | |