aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-08-03curl_gssapi: refine the handling of CURLOPT_GSSAPI_DELEGATIONKamil Dudka
Suggested by Richard Silverman.
2011-08-03Add new CURLOPT_GSSAPI_DELEGATION option.Adam Tkac
Curl_gss_init_sec_context got new parameter - SessionHandle. Signed-off-by: Adam Tkac <atkac@redhat.com>
2011-07-19symbols-in-versions: add NTLM_SSO symbolsDaniel Stenberg
2011-06-30docs: FTP quotes support '*' prefix to ignore errorsDaniel Stenberg
By default libcurl stops processing quote commands on failures.
2011-06-29THANKS: new contributors from 7.21.7Daniel Stenberg
2011-06-28examples: cleanup curl includesDaniel Stenberg
Only <curl/curl.h> is needed typically and curl/types.h has been removed
2011-06-23curl_formfree: clarify which pointer to freeDaniel Stenberg
2011-06-21FAQ: more blurb on persistent connectionsDaniel Stenberg
2011-06-20INSTALL: mention the GIT-INFO fileDaniel Stenberg
2011-06-13curl_formget.3: CURLFORM_STREAM has its drawbacksDaniel Stenberg
Due to a design flaw, the CURLFORM_STREAM option doesn't really work with curl_formget until after curl_easy_perform (or similar).
2011-06-13FAQ: binding clarificationDaniel Stenberg
We don't author the bindings, they are created outside the main project.
2011-06-10CURLOPT_WRITEHEADER: clarify the docsDaniel Stenberg
2011-06-02curl hasn't sent a Pragma: header by default for a whileDan Fandrich
2011-06-01CURLOPT_WILDCARDMATCH: minor style editDaniel Stenberg
Due to some flaw in roffit I removed some style changes to make the web page look better.
2011-05-27curl_easy_setopt.3: NOPROGRESS also affects the callbackDaniel Stenberg
2011-05-25setopt.3: remove leftover style changeDaniel Stenberg
2011-05-25setopt.3: CURLOPT_WRITEFUNCTION had wrong function protoDaniel Stenberg
2011-05-19typo: close is in man page section 3Daniel Stenberg
2011-05-18curl_easy_setopt.3: document CLOSESOCKET* optionsDaniel Stenberg
2011-05-18symbols-in-versions: add CLOSESOCKET*Daniel Stenberg
2011-05-05curl.1: --socks* options no longer neededDaniel Stenberg
As we now can specify all the socks proxy types with the regular --proxy option using protocol prefix.
2011-05-05socks proxy: allow socks5h:// prefix tooDaniel Stenberg
Using 'socks5h' as proxy protocol will make it a CURLPROXY_SOCKS5_HOSTNAME proxy which is SOCKS5 and asking the proxy to resolve host names. I found no "standard" protocol name for this.
2011-05-05curl.1: minor edit of --ftp-ssl*Daniel Stenberg
2011-05-05curl.1: use GNU style and sort optionsJari Aalto
Follow style of GNU layout (cp, mv ...) where options are separated with comma: -o, --option Order item alphabetically (by length also): -o, -O, --option Follow style of GNU layout by moving help related options to the end: --help, -M, --version
2011-05-03curl_easy_getinfo.3: clarify some timing infoDaniel Stenberg
2011-05-02curl_easy_setopt.3: clarify the SSH KEYFILE options usageDaniel Stenberg
The internal defaults are important info
2011-05-02docs: mention the protocol:// support in proxy stringsDaniel Stenberg
2011-05-02--data-ascii: add mentionDaniel Stenberg
As it is a separate option it should have a .IP title
2011-05-02url encode docs: mention '-', '.', '_' and '~'Daniel Stenberg
Clarify that the '-', '.', '_' or '~' letters are also not escaped since they shouldn't according to RFC3986 section 2.3. This is how this function has behaved since sep 2010, commit 5df13c31735fa0.
2011-04-30curl_formfree.3: mention argument may be NULLDaniel Stenberg
As the code already checks for it we can just as well make it official!
2011-04-28anyauthput.c: stdint.h must not be included unconditionallyDaniel Stenberg
As it is already included by curlbuild.h if it exists on the platform it was included here superfluously anyway. Reported by: Dagobert Michelsen Bug: http://curl.haxx.se/bug/view.cgi?id=3294509
2011-04-28CMake: improve library search, implement install.Zmey Petroff
Improved library search by check_function_exists_concat() macro: it does not revert the list of libraries any more. Improved OpenSSL library search: first find zlib, then search for openssl libraries that may depend on zlib. For Unix: openssl libraries can now be detected in nonstandard locations. Supply CMAKE_LIBRARY_PATH to CMake on command line. Added installation capability (very basic one yet).
2011-04-22THANKS: contributors from 7.21.6Daniel Stenberg
2011-04-20curl_easy_setopt.3: CURLOPT_PROXYTYPE clarificationDaniel Stenberg
When set to a HTTP 1.0 proxy, that only affects the CONNECT request and not the regular HTTP request.
2011-04-19Updated default (recommended) dependency versions.Guenter Knauf
2011-04-18transfer-encoding: document the optionsDaniel Stenberg
The new libcurl and command line options are now described.
2011-04-18transfer-encoding: added new option and cmdlineDaniel Stenberg
Added CURLOPT_TRANSFER_ENCODING as the option to set to request Transfer Encoding in HTTP requests (if built zlib enabled). I also renamed CURLOPT_ENCODING to CURLOPT_ACCEPT_ENCODING (while keeping the old name around) to reduce the confusion when we have to encoding options for HTTP. --tr-encoding is now the new command line option for curl to request this, and thus I updated the test cases accordingly.
2011-04-17THANKS: 11 new contributors from 7.21.5Daniel Stenberg
2011-04-17INTERNALS: clean upDaniel Stenberg
Clarified the release procedure
2011-04-14curl.1: error code updateDaniel Stenberg
Error 4 has got a meaning Error 48 has got a slightly different meaning now
2011-04-14FAQ: c-ares does ipv6 pretty well nowDaniel Stenberg
2011-04-12Updated minimum binary sizesDan Fandrich
2011-04-11curl.1: spell out the -O target directoryDaniel Stenberg
When using -O the file will be saved in the current directory, and this is now spelled out clearly.
2011-04-09curl_easy_setopt.3: CURLOPT_RESOLVE typo versionDaniel Stenberg
Reported by: Hongli Lai
2011-04-07Added mention of FTP proxiesDan Fandrich
2011-04-07examples/makefile.dj: update emailGisle Vanem
2011-04-05return code cleanup: build, init and run-time errorsDaniel Stenberg
Stop the abuse of CURLE_FAILED_INIT as return code for things not being init related by introducing two new return codes: CURLE_NOT_BUILT_IN and CURLE_UNKNOWN_OPTION CURLE_NOT_BUILT_IN replaces return code 4 that has been obsoleted for several years. It is used for returning error when something is attempted to be used but the feature/option was not enabled or explictitly disabled at build-time. Getting this error mostly means that libcurl needs to be rebuilt. CURLE_FAILED_INIT is now saved and used strictly for init failures. Getting this problem means something went seriously wrong, like a resource shortage or similar. CURLE_UNKNOWN_OPTION is the option formerly known as CURLE_UNKNOWN_TELNET_OPTION (and the old name is still present, separately defined to be removed in a very distant future). This error code is meant to be used to return when an option is given to libcurl that isn't known. This problem would mostly indicate a problem in the program that uses libcurl.
2011-03-29curl_easy_setopt.3: mention TFTP read callback flawDaniel Stenberg
The read callback must return the exact requested amount of data when it is used for doing TFTP uploads. This is due to how it deals with data internally. This could/should be fixed but for now we document the existing behavior. Reported by: Colin Blair Bug: http://curl.haxx.se/mail/lib-2011-03/0319.html
2011-03-25TSL-SRP: enabled with OpenSSLPeter Sylvester
If a new enough OpenSSL version is used, configure detects the TLS-SRP support and enables it.
2011-03-24symbols-in-versions: make test 1119 happyDaniel Stenberg