Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-09 | TODO: added an SSH section and two SFTP things to do | Daniel Stenberg | |
2016-08-09 | TODO: remove the 1.22 duplicated item | Daniel Stenberg | |
2016-08-09 | TODO: move "CURLOPT_MAIL_CLIENT" to SMTP section | Daniel Stenberg | |
2016-08-09 | TODO: API for URL parsing/splitting | Daniel Stenberg | |
2016-08-09 | TODO: move QUIC to the HTTP section | Daniel Stenberg | |
2016-08-08 | TODO: Use huge HTTP/2 windows | Daniel Stenberg | |
2016-08-07 | TODO: added several ideas, removed SPDY | Daniel Stenberg | |
2016-08-05 | CURLOPT_TCP_NODELAY: now enabled by default | Daniel Stenberg | |
After a few wasted hours hunting down the reason for slowness during a TLS handshake that turned out to be because of TCP_NODELAY not being set, I think we have enough motivation to toggle the default for this option. We now enable TCP_NODELAY by default and allow applications to switch it off. This also makes --tcp-nodelay unnecessary, but --no-tcp-nodelay can be used to disable it. Thanks-to: Tim Rühsen Bug: https://curl.haxx.se/mail/lib-2016-06/0143.html | |||
2016-08-03 | mbedtls: Added support for NTLM | Bill Nagel | |
2016-08-03 | THANKS: 7 new contributors from the 7.50.1 release | Daniel Stenberg | |
2016-08-03 | KNOWN_BUGS: SOCKS proxy not working via IPv6 | Daniel Stenberg | |
Closes #835 | |||
2016-08-03 | KNOWN_BUGS: CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM | Daniel Stenberg | |
Closes #768 | |||
2016-08-03 | KNOWN_BUGS: transfer-encoding: chunked in HTTP/2 | Daniel Stenberg | |
Closes #662 | |||
2016-08-03 | TODO: Provide cmake config-file | Daniel Stenberg | |
Closes #885 | |||
2016-07-26 | TODO: minor typo in last commit | Viktor Szakats | |
merged #931 | |||
2016-07-26 | TODO: Timeout idle connections from the pool | Daniel Stenberg | |
2016-07-22 | SECURITY: mention how to get windows-specific CVEs | Daniel Stenberg | |
... and make the distros link a proper link | |||
2016-07-21 | docs: distribute the CURLINFO_HTTP_VERSION(3) man page, too | Kamil Dudka | |
2016-07-21 | THANKS: 13 new contributors from the 7.50.0 release | Daniel Stenberg | |
2016-07-19 | ROADMAP: QUIC and TLS 1.3 | Daniel Stenberg | |
2016-07-14 | CURLMOPT_SOCKETFUNCTION.3: fix typo | Timothy Polich | |
Closes https://github.com/curl/curl/pull/914 | |||
2016-07-09 | FAQ: Update FTP directory listing section for MLSD command | Jay Satiro | |
Explain how some FTP servers support the machine readable listing format MLSD from RFC 3659 and compare it to LIST. Ref: https://github.com/curl/curl/issues/906 | |||
2016-06-30 | TODO: 17.4 also brings more HTTP/2 support | Daniel Stenberg | |
2016-06-30 | TODO: try next proxy if one doesn't work | Daniel Stenberg | |
Closes #896 | |||
2016-06-29 | curl_global_init.3: improved formatting of the flags | Daniel Stenberg | |
2016-06-29 | curl_global_init.3: expand on the SSL and WIN32 bits purpose | Daniel Stenberg | |
Reported-by: Richard Gray Bug: https://curl.haxx.se/mail/lib-2016-06/0136.html | |||
2016-06-28 | ROADMAP: http2 tests are merged, mention http2 perf | Daniel Stenberg | |
2016-06-28 | docs/README.md: to render nicer pages on github | Daniel Stenberg | |
... as previously the README.cmake would be picked and put at the bottom of the docs page there and it wasn't very representative! | |||
2016-06-28 | KNOWN_BUGS: 3.4 POP3 expects "CRLF.CRLF" eob for some | Daniel Stenberg | |
Closes #740 | |||
2016-06-22 | TODO: "TCP Fast Open" is done, add monitor pool connections | Daniel Stenberg | |
2016-06-22 | internals: rename the SessionHandle struct to Curl_easy | Daniel Stenberg | |
2016-06-22 | curl.1: the used progress meter suffix is k in lower case | Daniel Stenberg | |
Closes #883 | |||
2016-06-17 | curl.1: missed 'T' in the progress unit suffixes | Daniel Stenberg | |
2016-06-17 | curl.1: mention the unix for the progress meter | Daniel Stenberg | |
2016-06-11 | CURLOPT_POSTFIELDS.3: Clarify what happens when set empty | Jay Satiro | |
When CURLOPT_POSTFIELDS is set to an empty string libcurl will send a zero-byte POST. Prior to this change it was documented as sending data from the read callback. This also changes the wording of what happens when empty or NULL so that it's hopefully easier to understand for people whose primary language isn't English. Bug: https://github.com/curl/curl/issues/862 Reported-by: Askar Safin | |||
2016-06-09 | curl_multi_socket_action.3: Fix rewording | Michael Wallner | |
- Remove some erroneous text. Closes https://github.com/curl/curl/pull/865 | |||
2016-06-01 | libcurl-multi.3: fix small typo | Benjamin Kircher | |
Closes #850 | |||
2016-06-01 | schannel: add CURLOPT_CERTINFO support | Andrew Kurushin | |
Closes #822 | |||
2016-05-30 | http: add CURLINFO_HTTP_VERSION and %{http_version} | Frank Gevaerts | |
Adds access to the effectively used http version to both libcurl and curl. Closes #799 | |||
2016-05-29 | curl_share_setopt.3: Add min ver needed for ssl session lock | Jay Satiro | |
Bug: https://github.com/curl/curl/issues/826 Reported-by: Michael Wallner | |||
2016-05-23 | THANKS: updated after script fixes | Daniel Stenberg | |
Now giving credit properly to github user names, fixed some UTF-8 issues and added names discovered when contrithanks was improved. | |||
2016-05-23 | THANKS-filter: more name cleanups | Daniel Stenberg | |
2016-05-23 | THANKS-filter: fix more names | Daniel Stenberg | |
2016-05-20 | THANKS-filter: make Jan-E get proper credit | Daniel Stenberg | |
2016-05-20 | libcurl.m4: Avoid obsolete warning | Alexander Traud | |
Closes #821 | |||
2016-05-20 | CURLOPT_CONNECT_TO.3: user must not free the list prematurely | Michael Kaufmann | |
The connect-to list isn't copied so as long as the handle may be used for a transfer the list must be valid. Bug: https://github.com/curl/curl/pull/819 Reported-by: Michael Kaufmann | |||
2016-05-19 | dist: include curl_multi_socket_all.3 | Jay Satiro | |
Closes https://github.com/curl/curl/pull/816 | |||
2016-05-18 | dist: include CHECKSRC.md | Daniel Stenberg | |
Reported-by: Paul Howarth Bug: https://curl.haxx.se/mail/lib-2016-05/0116.html | |||
2016-05-17 | THANKS: 24 new names from 7.49.0 release notes | Daniel Stenberg | |
2016-05-17 | CURLOPT_RESOLVE.3: fix typo | Frank Gevaerts | |
Closes #811 |