summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* http2: Add handling stream level errorTatsuhiro Tsujikawa2016-04-112-0/+3
| | | | | | | | | | | | | Previously, when a stream was closed with other than NGHTTP2_NO_ERROR by RST_STREAM, underlying TCP connection was dropped. This is undesirable since there may be other streams multiplexed and they are very much fine. This change introduce new error code CURLE_HTTP2_STREAM, which indicates stream error that only affects the relevant stream, and connection should be kept open. The existing CURLE_HTTP2 means connection error in general. Ref: https://github.com/curl/curl/issues/659 Ref: https://github.com/curl/curl/pull/663
* KNOWN_BUGS: added info for "Hangs with PolarSSL"Daniel Stenberg2016-04-111-0/+4
|
* KNOWN_BUGS: 1.9 HTTP/2 frames while in the connection pool kill reuseDaniel Stenberg2016-04-101-0/+11
| | | | Closes #750
* CURLOPT_SOCKS5_GSSAPI_SERVICE: Merged with CURLOPT_PROXY_SERVICE_NAMESteve Holme2016-04-093-10/+13
| | | | | | | | | As these two options provide identical functionality, the former for SOCK5 proxies and the latter for HTTP proxies, merged the two options together. As such CURLOPT_SOCKS5_GSSAPI_SERVICE is marked as deprecated as of 7.49.0.
* CODE_STYLE: Added ternary operator example to 'Space around operators'Steve Holme2016-04-091-0/+1
| | | | Following conversation on the libcurl mailing list.
* docs: Added clarification following commit 9d89a0387Steve Holme2016-04-083-6/+6
|
* ftp/imap/pop3/smtp: Allow the service name to be overriddenSteve Holme2016-04-081-6/+7
| | | | | Allow the service name to be overridden for DIGIST-MD5 and Kerberos 5 authentication in FTP, IMAP, POP3 and SMTP.
* ROADMAP: Updated following the move of the authentication codeSteve Holme2016-04-081-4/+2
|
* KNOWN_BUGS: openldap hangs. TODO: binary SASL.Patrick Monnerat2016-04-082-0/+30
|
* KNOWN_BUGS: 5.6 Improper use of Autoconf cache variablesDaniel Stenberg2016-04-081-0/+8
| | | | Closes #603
* KNOWN_BUGS: 11.2 error buffer not set...Daniel Stenberg2016-04-081-0/+8
| | | | Closes #544
* KNOWN_BUGS: 11.1 Curl leaks .onion hostnames in DNSDaniel Stenberg2016-04-081-0/+14
| | | | Closes #543
* KNOWN_BUGS: 1.8 DNS timing is wrong for HTTP redirectsDaniel Stenberg2016-04-081-0/+7
| | | | Closes #522
* TODO: HTTP/2 "prior knowledge" is implemented!Daniel Stenberg2016-04-082-11/+0
|
* curl.1: use example.com moreDaniel Stenberg2016-04-061-19/+19
| | | | | | Make (most) example snippets use the example.com domain instead of the random ones picked and used before. Some of those were probably legitimate sites and some not. example.com is designed for this purpose.
* URLs: change http to https in many placesViktor Szakats2016-04-063-4/+4
| | | | Closes #754
* curl.1: change example for -FTheodore Dubois2016-04-061-4/+3
| | | | | | | It's a bad idea to send your passwords anywhere, especially over HTTP. Modified example to send a picture instead. Fixes #752
* KNOWN_BUGS: reorganized and cleaned upDaniel Stenberg2016-04-061-247/+385
| | | | | | | | | Now sorted into categories and organized in the same style we do the TODO document. It will make each issue linked properly on the https://curl.haxx.se/docs/knownbugs.html web page. The sections should make it easier to find issues and issues related to areas of the reader's specific interest.
* KNOWN_BUGS: #95 curl in Windows can't handle Unicode argumentsJay Satiro2016-04-061-0/+9
|
* KNOWN_BUGS: Use https://curl.haxx.se URL for github based issuesSteve Holme2016-04-061-4/+4
|
* CHECKSRC.md: Corrected some typosSteve Holme2016-04-061-10/+9
|
* KNOWN_BUGS: #94 IMAP custom requests use the LIST handlerJay Satiro2016-04-051-0/+5
| | | | | Bug: https://github.com/curl/curl/issues/536 Reported-by: eXeC64@users.noreply.github.com
* KNOWN_BUGS: remove 68, 70 and 72.Daniel Stenberg2016-04-051-9/+0
| | | | | | | | | | | | | | | | Due to their age (we don't fully know if they actually remain) and lack of detail - very few people will bother to find out what they're about or work on them. If people truly still suffer from any of these, I assume they will be reported again and then we'll deal with them. 72. "Pausing pipeline problems." https://curl.haxx.se/mail/lib-2009-07/0214.html 70. Problem re-using easy handle after call to curl_multi_remove_handle https://curl.haxx.se/mail/lib-2009-07/0249.html 68. "More questions about ares behavior". https://curl.haxx.se/mail/lib-2009-08/0012.html
* KNOWN_BUGS: remove 92 and 88, fixedDaniel Stenberg2016-04-051-14/+0
|
* CHECKSRC.md: mention cmdline options, fix the bullet listDaniel Stenberg2016-04-041-21/+30
|
* docs/CHECKSRC.md: initial versionDaniel Stenberg2016-04-041-0/+114
|
* docs/examples: remove spurious white spaces all overDaniel Stenberg2016-04-0312-31/+31
| | | | ... to please the new, slightly picker, checksrc.pl
* code: style updatesDaniel Stenberg2016-04-033-3/+3
|
* curl.1: -w filename_effective was introduced in 7.26.0Daniel Stenberg2016-04-021-1/+1
| | | | We never made a 7.25.1 release
* test1119: Fixed missing CURL_DID_MEMORY_FUNC_TYPEDEFS symbolSteve Holme2016-04-021-0/+1
|
* curl/mprintf.h: remove support for _MPRINTF_REPLACEDaniel Stenberg2016-04-011-9/+3
| | | | | | | | | | | | | | | | | | | The define is not in our name space and is therefore not protected by our API promises. It was only really used by libcurl internals but was mostly erased from there already in 8aabbf5 (March 2015). This is supposedly the final death blow to that define from everywhere. As a side-effect, making sure _MPRINTF_REPLACE is gone and not used, I made the lib tests in tests/libtest/ use curl_printf.h for its redefine magic and then subsequently the use of sprintf() got banned in the tests as well (as it is in libcurl internals) and I then replaced them all with snprintf(). In the unlikely event that any users is actually using this define and gets sad by this change, it is very easily copied to the user's own code.
* http2: more documentation for prior knowledgeDaniel Stenberg2016-03-312-5/+13
|
* http2: support "prior knowledge", no upgrade from HTTP/1.1Diego Bes2016-03-313-0/+9
| | | | | | | | | | | | | Supports HTTP/2 over clear TCP - Optimize switching to HTTP/2 by removing calls to init and setup before switching. Switching will eventually call setup and setup calls init. - Supports new version to “force” the use of HTTP/2 over clean TCP - Add common line parameter “--http2-prior-knowledge” to the Curl command line tool.
* build: use roffit 0.11 featureDaniel Stenberg2016-03-293-5/+5
| | | | ... load file specified as argument.
* TODO: use secure protocol in recently added URLViktor Szakats2016-03-291-1/+1
| | | | Closes #733
* HTTP2.md: mention libressl and boringssl tooDaniel Stenberg2016-03-291-11/+13
|
* docs/HTTP-COOKIES: converted to markdownDaniel Stenberg2016-03-293-128/+109
|
* HTTP2: s/polarssl/mbedtlsDaniel Stenberg2016-03-291-2/+2
|
* wolfssl: Add ALPN supportJay Satiro2016-03-281-1/+3
|
* TODO: 2.5 Edge-triggered sockets should workDaniel Stenberg2016-03-281-0/+7
|
* CURLMOPT_SOCKETFUNCTION.3: describe the 'what' argumentDaniel Stenberg2016-03-271-3/+15
|
* curl_multi_socket_action.3: mark the options properlyDaniel Stenberg2016-03-271-6/+7
| | | | ... to make them appear as links on the html version.
* docs: curlinfo_filetime sftp support, new curlopt_quote "statvfs"marquis-de-muesli2016-03-273-4/+7
| | | | Closes #677
* docs/TODO: Add feature request for metalink in HTTP headersDusty Mabe2016-03-251-0/+14
| | | | | Closes #729 Closes #728
* schannel: Add ALPN supportJDepooter2016-03-241-1/+2
| | | | | | | Add ALPN support for schannel. This allows cURL to negotiate HTTP/2.0 connections when built with schannel. Closes #724
* RELEASE-PROCEDURE: mention the github release tag editDaniel Stenberg2016-03-231-4/+9
| | | | ... and update the coming release dates a bit
* THANKS: 15 new contributors from 7.48.0 releaseDaniel Stenberg2016-03-231-0/+15
|
* CURLINFO_TLS_SSL_PTR.3: Warn about limitationsJay Satiro2016-03-231-5/+37
| | | | Bug: https://github.com/curl/curl/issues/685
* libcurl-thread.3: minor nroff format fixDaniel Stenberg2016-03-221-1/+1
|
* CURLINFO_TLS_SSL_PTR.3: minor nroff format fixDaniel Stenberg2016-03-221-3/+3
|