Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-02-09 | Some functions are static here, but extern in libxml's | Gisle Vanem | |
SAX.h. gcc doesn't like that. Rename. | |||
2005-02-09 | add missing error codes | Daniel Stenberg | |
2005-02-08 | -O clarification | Daniel Stenberg | |
2005-02-05 | valgrind errors occur too often when 'make test' is used. It is because too | Daniel Stenberg | |
many third-party libs and tools have problems. When curl is built without --disable-shared, the testing is done with a front-end script which makes the valgrind testing include (ba)sh as well and that often causes valgrind errors. Either we improve the valgrind error scanner a lot to better identify (lib)curl errors only, or we disable valgrind checking by default | |||
2005-02-04 | fix type | Daniel Stenberg | |
2005-02-02 | another example | Daniel Stenberg | |
2005-02-02 | HTML parsing example with libtidy, by Jeff Pohlmeyer | Daniel Stenberg | |
2005-02-01 | 7.13 coming up | Daniel Stenberg | |
2005-01-31 | somewhat nicer libcurl usage | Daniel Stenberg | |
2005-01-31 | htmltitle | Daniel Stenberg | |
2005-01-31 | HTML <head> parsing (with libxml) example code by Lars Nilsson. | Daniel Stenberg | |
2005-01-29 | corrected the URL | Daniel Stenberg | |
2005-01-28 | KNOWN_BUGS #17 fixed. A DNS cache entry may not remain locked between two | Daniel Stenberg | |
curl_easy_perform() invokes. It was previously unlocked at disconnect, which could mean that it remained locked between multiple transfers. The DNS cache may not live as long as the connection cache does, as they are separate. To deal with the lack of DNS (host address) data availability in re-used connections, libcurl now keeps a copy of the IP adress as a string, to be able to show it even on subsequent requests on the same connection. | |||
2005-01-26 | new curlpp URL | Daniel Stenberg | |
2005-01-26 | fixed sort, mention C, the java binding is now maintained by Vic Hanson | Daniel Stenberg | |
2005-01-25 | add number to the bugs to make them easier to refer to | Daniel Stenberg | |
2005-01-25 | two known bugs | 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. | |||
2005-01-25 | --protocols is added in 7.13.0 | Daniel Stenberg | |
2005-01-25 | David Shaw contributed a fairly complete and detailed autoconf macro you can | Daniel Stenberg | |
use to detect libcurl and setup variables for the protocols the installed libcurl supports: docs/libcurl/libcurl.m4 | |||
2005-01-22 | \fI marked \fP more function calls etc. | Daniel Stenberg | |
2005-01-22 | If you're using libcurl as a win32 DLL, you MUST use the CURLOPT_WRITEFUNCTION | Daniel Stenberg | |
if you set CURLOPT_WRITEDATA - or you will experience crashes. | |||
2005-01-21 | FTP third transfer support overhaul. See CHANGES for details. | Daniel Stenberg | |
2005-01-21 | clarify the struct name for CURLOPT_HTTPPOST | Daniel Stenberg | |
2005-01-20 | Philippe Hameau found out that -Q "+[command]" didn't work, although some code | Daniel Stenberg | |
was written for it. I fixed and added test case 227 to verify it. The curl.1 man page didn't mention the '+' so I added it. | |||
2005-01-20 | If you give a *_LARGE option you MUST make sure that the type of the passed-in | Daniel Stenberg | |
argument is a curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must make sure that to pass in a type 'long' argument. */ | |||
2005-01-19 | Stephan Bergmann made libcurl return CURLE_URL_MALFORMAT if an FTP URL | Daniel Stenberg | |
contains %0a or %0d in the user, password or CWD parts. (A future fix would include doing it for %00 as well - see KNOWN_BUGS for details.) Test case 225 and 226 were added to verify this | |||
2005-01-19 | add a URL to an article about making Apache support PUT | Daniel Stenberg | |
2005-01-17 | updated the wording for -B/--use-ascii | Daniel Stenberg | |
2005-01-16 | mention --netrc in the -u description | Daniel Stenberg | |
2005-01-11 | support for retrieving used IP addresses | Daniel Stenberg | |
2005-01-11 | Dan Torop cleaned up a few no longer used variables from David Phillips' | Daniel Stenberg | |
select() overhaul fix. | |||
2005-01-08 | Note about the static lib requirement; -DCURL_STATICLIB. | Gisle Vanem | |
2005-01-04 | Changed curl.dll to libcurl.dll. | Gisle Vanem | |
2005-01-04 | just narrowed some text to fit within 80 cols | Daniel Stenberg | |
2004-12-25 | Test case 241 fails on all systems that support IPv6 but that don't have the | Daniel Stenberg | |
host name 'ip6-localhost' in /etc/hosts (or similar) since the test case uses that host name to test the IPv6 name to address resolver. | |||
2004-12-24 | mention the new --protocols | Daniel Stenberg | |
2004-12-23 | Added LDAP library issue. | Dan Fandrich | |
2004-12-22 | added CURLINFO_HTTP_CONNECTCODE | Daniel Stenberg | |
2004-12-22 | uh, fixed! | Daniel Stenberg | |
2004-12-22 | Added: 4 protocols we _could_ support and the CONNECT HTTP/1.0 detail we might | Daniel Stenberg | |
fix one day. | |||
2004-12-21 | more about error codes | Daniel Stenberg | |
2004-12-21 | Added test case 217 that verified CURLINFO_HTTP_CONNECTCODE, and I made the | Daniel Stenberg | |
-w option support 'http_connect' to make it easier to verify! | |||
2004-12-21 | mention how the FTP code should be fixed one day | Daniel Stenberg | |
2004-12-21 | How do I list the root dir of an FTP server? | Daniel Stenberg | |
2004-12-18 | mention the new cookie api plans | Daniel Stenberg | |
2004-12-18 | Jean-Marc Ranger pointed out that the returned data doesn't survive a call | Daniel Stenberg | |
to curl_multi_remove_handle() either. | |||
2004-12-14 | clarify that the app must free the engine list | Daniel Stenberg | |
2004-12-13 | Document CURLINFO_SSL_ENGINES and "--engine". | Gisle Vanem | |
2004-12-11 | mention the maybe-missing initial zero in the vernum output | Daniel Stenberg | |