aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2005-04-07added some blurb about the GnuTLS licenseDaniel Stenberg
2005-04-07ssl_version_num is not used anymoreDaniel Stenberg
2005-04-07add SSPIDaniel Stenberg
2005-04-06Removed extraneous commaDan Fandrich
2005-04-055.11 How do I make libcurl not receive the whole HTTP response?Daniel Stenberg
2005-04-05two more actual FAQsDaniel Stenberg
2005-04-05bug report #1156287, ftp upload from VMSDaniel Stenberg
2005-04-04spell fixes, based on the Debian bug report #302820 submitted by "A Costa"Daniel Stenberg
2005-03-30format mistake in --form-string, pointed out by Owen WatsonDaniel Stenberg
2005-03-28Added --proxy-anyauthDaniel Stenberg
2005-03-17add 'FTP ASCII transfers' here, since they seem to be frequently attemptedDaniel Stenberg
these days...!
2005-03-12found a common lisp bindingDaniel Stenberg
2005-03-12David Houlder added --form-stringDaniel Stenberg
2005-03-11added CURL_VERSION_SSPIDaniel Stenberg
2005-03-11Fixed LDAP library file name bug (KNOWN_BUGS #1). configure now auto-detectsDan Fandrich
the correct dynamic library names by default, and provides override switches --with-ldap-lib, --with-lber-lib and --without-lber-lib. Added CURL_DISABLE_LDAP to platform-specific config files to disable LDAP support on those platforms that probably don't have dynamic OpenLDAP libraries available to avoid compile errors.
2005-03-08mktime() returns a time_t. time_t is often 32 bits, even on many architecturesDaniel 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-08days are englishDaniel Stenberg
2005-03-04Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activateDaniel Stenberg
the cookie "engine" without having to provide an empty or non-existing file.
2005-03-03VB binding, updated the .NET infoDaniel Stenberg
2005-02-17mention filename= for the -FDaniel Stenberg
2005-02-09Some functions are static here, but extern in libxml'sGisle Vanem
SAX.h. gcc doesn't like that. Rename.
2005-02-09add missing error codesDaniel Stenberg
2005-02-08-O clarificationDaniel Stenberg
2005-02-05valgrind errors occur too often when 'make test' is used. It is because tooDaniel 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-04fix typeDaniel Stenberg
2005-02-02another exampleDaniel Stenberg
2005-02-02HTML parsing example with libtidy, by Jeff PohlmeyerDaniel Stenberg
2005-02-017.13 coming upDaniel Stenberg
2005-01-31somewhat nicer libcurl usageDaniel Stenberg
2005-01-31htmltitleDaniel Stenberg
2005-01-31HTML <head> parsing (with libxml) example code by Lars Nilsson.Daniel Stenberg
2005-01-29corrected the URLDaniel Stenberg
2005-01-28KNOWN_BUGS #17 fixed. A DNS cache entry may not remain locked between twoDaniel 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-26new curlpp URLDaniel Stenberg
2005-01-26fixed sort, mention C, the java binding is now maintained by Vic HansonDaniel Stenberg
2005-01-25add number to the bugs to make them easier to refer toDaniel Stenberg
2005-01-25two known bugsDaniel Stenberg
2005-01-25Ian Ford asked about support for the FTP command ACCT, and I discovered it isDaniel 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.0Daniel Stenberg
2005-01-25David Shaw contributed a fairly complete and detailed autoconf macro you canDaniel 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-22If you're using libcurl as a win32 DLL, you MUST use the CURLOPT_WRITEFUNCTIONDaniel Stenberg
if you set CURLOPT_WRITEDATA - or you will experience crashes.
2005-01-21FTP third transfer support overhaul. See CHANGES for details.Daniel Stenberg
2005-01-21clarify the struct name for CURLOPT_HTTPPOSTDaniel Stenberg
2005-01-20Philippe Hameau found out that -Q "+[command]" didn't work, although some codeDaniel 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-20If you give a *_LARGE option you MUST make sure that the type of the passed-inDaniel 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-19Stephan Bergmann made libcurl return CURLE_URL_MALFORMAT if an FTP URLDaniel 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-19add a URL to an article about making Apache support PUTDaniel Stenberg
2005-01-17updated the wording for -B/--use-asciiDaniel Stenberg
2005-01-16mention --netrc in the -u descriptionDaniel Stenberg