Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-11 | mention how to set domain when using NTLM | Daniel Stenberg | |
2005-10-27 | Nis Jorgensen filed bug report #1338648 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1338648) which really is more of a feature request, but anyway. It pointed out that --max-redirs did not allow it to be set to 0, which then would return an error code on the first Location: found. Based on Nis' patch, now libcurl supports CURLOPT_MAXREDIRS set to 0, or -1 for infinity. Added test case 274 to verify. | |||
2005-10-13 | Slight editing of wording in the CURLOPT_SSL_VERIFYHOST section. | Daniel Stenberg | |
2005-10-13 | NTLM requires windows or OpenSSL. If you build with GnuTLS for example you | Daniel Stenberg | |
do not get NTLM support enabled. | |||
2005-10-06 | remove getinfo-times from the dist archive since the info is now in the | Daniel Stenberg | |
curl_easy_getinfo man page | |||
2005-10-06 | end the .nf section, mark the option names properly so that they end up | Daniel Stenberg | |
as links in the html version | |||
2005-10-06 | Added the info from getinfo-times as it really belongs in this man page. | Daniel Stenberg | |
2005-10-04 | Domenico Andreoli's SEE ALSO patch | Daniel Stenberg | |
2005-09-22 | clarify what the default read callback does and how it uses the READDATA | Daniel Stenberg | |
option | |||
2005-09-21 | clarified ERRORBUFFER - some errors just don't write a string even though | Daniel Stenberg | |
they should. And I removed all uses 'Note' (as they are pretty useless) and did some other language and phrasing cleanups. | |||
2005-09-21 | mention what WRITEFUNCTION and WRITEDATA do by default | Daniel Stenberg | |
2005-09-21 | oops, broken sentence fixed: | Daniel Stenberg | |
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=329305 | |||
2005-09-12 | CURLOPT_BUFFERSIZE clarification | Daniel Stenberg | |
2005-09-04 | 7.14.2 actually | Daniel Stenberg | |
2005-09-04 | Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip | Daniel Stenberg | |
2005-09-01 | clarify that the ctxfunc is called on all new connects | Daniel Stenberg | |
2005-08-25 | "Added in 7.14.1" notes and some minor edits | Daniel Stenberg | |
2005-08-25 | CURLINFO_COOKIELIST is added in 7.14.1 | Daniel Stenberg | |
2005-08-24 | Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible | Daniel Stenberg | |
from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works. | |||
2005-08-19 | Using CURLOPT_COOKIEFILE serveral times add more files to read from. | Daniel Stenberg | |
2005-08-18 | it isn't strictly necessary to use it after a perform | Daniel Stenberg | |
2005-08-12 | clarify | Daniel Stenberg | |
2005-08-01 | mention that the NOBODY reset thing is added in 7.14.1 | Daniel Stenberg | |
2005-07-30 | CURLOPT_COOKIELIST change since it no longer modifies the input string contents | Daniel Stenberg | |
2005-07-27 | If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST is | Daniel Stenberg | |
set to 1, CURLOPT_NOBODY will now automatically be set to 0. | |||
2005-07-27 | Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a | Daniel Stenberg | |
simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code. | |||
2005-07-13 | better description for HEADERFUNCTION | Daniel Stenberg | |
2005-07-13 | elaborate a bit on how to deal with chunked-encoded trailers that now are | Daniel Stenberg | |
passed to the app using the header callback | |||
2005-06-26 | clarify that ftp ascii transfers don't do right in current libcurl | Daniel Stenberg | |
2005-06-23 | added docs about the new proxy string support | Daniel Stenberg | |
2005-06-22 | David Shaw's updated version: | Daniel Stenberg | |
It now properly handles code that uses curl_free() (since not all versions of curl have it), and also fixes a few problems when detecting libcurl on MinGW, and a linker problem on OSX Panther. | |||
2005-06-20 | mistake | Daniel Stenberg | |
2005-06-11 | CURLINFO_FILETIME returns the time for GMT | Daniel Stenberg | |
2005-06-06 | Tupone Alfredo's fixes: | Daniel Stenberg | |
1) findtool does look per tool in PATH and think ./perl is the perl executable, while is just a local directory (I have . in the PATH) 2) I got several warning for head -1 deprecated in favour of head -n 1 3) ares directory is missing some file (missing is missing :-) ) because automake and friends is not run. (Let's hope number 2 doesn't break somewhere "out there", if so we can always search/replace that back.) | |||
2005-06-03 | first rough version | Daniel Stenberg | |
2005-05-16 | bad formatting | Daniel Stenberg | |
2005-05-12 | remove blank lines | Daniel Stenberg | |
2005-05-12 | CURLOPT_SSLVERSION clarified | Daniel Stenberg | |
2005-05-09 | add multi-thread details for GnuTLS | Daniel Stenberg | |
2005-05-02 | Bryan Henderson's fine update of SSL_VERIFYPEER and SSL_VERIFYHOST | Daniel Stenberg | |
2005-04-25 | be specific about what max_fd contains after a call | Daniel Stenberg | |
2005-04-18 | digest works in the proxyauth too | Daniel Stenberg | |
2005-04-17 | somewhat clarified that this only sets the fd_sets and expects them to be | Daniel Stenberg | |
cleared before this function is called | |||
2005-04-07 | ssl_version_num is not used anymore | Daniel Stenberg | |
2005-03-11 | added CURL_VERSION_SSPI | Daniel Stenberg | |
2005-03-08 | mktime() returns a time_t. time_t is often 32 bits, even on many architectures | Daniel Stenberg | |
that feature 64 bit 'long'. Some systems have 64 bit time_t and deal with years beyond 2038. However, even some of the systems with 64 bit time_t returns -1 for dates beyond 03:14:07 UTC, January 19, 2038. (Such as AIX 5100-06) | |||
2005-03-08 | days are english | Daniel Stenberg | |
2005-03-04 | Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate | Daniel Stenberg | |
the cookie "engine" without having to provide an empty or non-existing file. | |||
2005-02-09 | add missing error codes | Daniel Stenberg | |
2005-01-25 | Ian Ford asked about support for the FTP command ACCT, and I discovered it is | Daniel Stenberg | |
present in RFC959... so now (lib)curl supports it as well. --ftp-account and CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account string after PASS have been sent away. The client responds with "ACCT [account string]".) Added test case 228 and 229 to verify the functionality. Updated the test FTP server to support ACCT somewhat. |