aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-08-13MANUAL: Remove invalid link to LDAP documentation (#962)Ronnie Mose
The server developer.netscape.com does not resolve into any ip address and can be removed.
2016-08-11mk-ca-bundle.1: document -m, added in 1.26Daniel Stenberg
2016-08-09symbols-in-versions: add CURL_STRICTERDaniel Stenberg
Added in 5fce88aa8c12564
2016-08-09LICENSE-MIXING.md: switched to markdownDaniel Stenberg
2016-08-09docs-make: have markdown files use .mdDaniel Stenberg
2016-08-09HISTORY.md: use markdown extensionDaniel Stenberg
2016-08-09SSLCERTS.md: renamed to markdown extensionDaniel Stenberg
2016-08-09INTERNALS.md: use markdown extension for markdown contentDaniel Stenberg
2016-08-09CONTRIBUTE.md: markdown extensionDaniel Stenberg
2016-08-09CONTRIBUTE: changed to markdownDaniel Stenberg
2016-08-09CONTRIBUTE: refreshedDaniel Stenberg
2016-08-09TODO: added an SSH section and two SFTP things to doDaniel Stenberg
2016-08-09TODO: remove the 1.22 duplicated itemDaniel Stenberg
2016-08-09TODO: move "CURLOPT_MAIL_CLIENT" to SMTP sectionDaniel Stenberg
2016-08-09TODO: API for URL parsing/splittingDaniel Stenberg
2016-08-09TODO: move QUIC to the HTTP sectionDaniel Stenberg
2016-08-08TODO: Use huge HTTP/2 windowsDaniel Stenberg
2016-08-07TODO: added several ideas, removed SPDYDaniel Stenberg
2016-08-05CURLOPT_TCP_NODELAY: now enabled by defaultDaniel 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-03mbedtls: Added support for NTLMBill Nagel
2016-08-03THANKS: 7 new contributors from the 7.50.1 releaseDaniel Stenberg
2016-08-03KNOWN_BUGS: SOCKS proxy not working via IPv6Daniel Stenberg
Closes #835
2016-08-03KNOWN_BUGS: CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAMDaniel Stenberg
Closes #768
2016-08-03KNOWN_BUGS: transfer-encoding: chunked in HTTP/2Daniel Stenberg
Closes #662
2016-08-03TODO: Provide cmake config-fileDaniel Stenberg
Closes #885
2016-07-26TODO: minor typo in last commitViktor Szakats
merged #931
2016-07-26TODO: Timeout idle connections from the poolDaniel Stenberg
2016-07-22SECURITY: mention how to get windows-specific CVEsDaniel Stenberg
... and make the distros link a proper link
2016-07-21docs: distribute the CURLINFO_HTTP_VERSION(3) man page, tooKamil Dudka
2016-07-21THANKS: 13 new contributors from the 7.50.0 releaseDaniel Stenberg
2016-07-19ROADMAP: QUIC and TLS 1.3Daniel Stenberg
2016-07-14CURLMOPT_SOCKETFUNCTION.3: fix typoTimothy Polich
Closes https://github.com/curl/curl/pull/914
2016-07-09FAQ: Update FTP directory listing section for MLSD commandJay 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-30TODO: 17.4 also brings more HTTP/2 supportDaniel Stenberg
2016-06-30TODO: try next proxy if one doesn't workDaniel Stenberg
Closes #896
2016-06-29curl_global_init.3: improved formatting of the flagsDaniel Stenberg
2016-06-29curl_global_init.3: expand on the SSL and WIN32 bits purposeDaniel Stenberg
Reported-by: Richard Gray Bug: https://curl.haxx.se/mail/lib-2016-06/0136.html
2016-06-28ROADMAP: http2 tests are merged, mention http2 perfDaniel Stenberg
2016-06-28docs/README.md: to render nicer pages on githubDaniel 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-28KNOWN_BUGS: 3.4 POP3 expects "CRLF.CRLF" eob for someDaniel Stenberg
Closes #740
2016-06-22TODO: "TCP Fast Open" is done, add monitor pool connectionsDaniel Stenberg
2016-06-22internals: rename the SessionHandle struct to Curl_easyDaniel Stenberg
2016-06-22curl.1: the used progress meter suffix is k in lower caseDaniel Stenberg
Closes #883
2016-06-17curl.1: missed 'T' in the progress unit suffixesDaniel Stenberg
2016-06-17curl.1: mention the unix for the progress meterDaniel Stenberg
2016-06-11CURLOPT_POSTFIELDS.3: Clarify what happens when set emptyJay 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-09curl_multi_socket_action.3: Fix rewordingMichael Wallner
- Remove some erroneous text. Closes https://github.com/curl/curl/pull/865
2016-06-01libcurl-multi.3: fix small typoBenjamin Kircher
Closes #850
2016-06-01schannel: add CURLOPT_CERTINFO supportAndrew Kurushin
Closes #822
2016-05-30http: add CURLINFO_HTTP_VERSION and %{http_version}Frank Gevaerts
Adds access to the effectively used http version to both libcurl and curl. Closes #799