aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2005-05-13updatedDaniel Stenberg
2005-05-12remove blank linesDaniel Stenberg
2005-05-12CURLOPT_SSLVERSION clarifiedDaniel Stenberg
2005-05-11MatrixSSL and yaSSL are two free libs we _could_ supportDaniel Stenberg
2005-05-11removed duplicateDaniel Stenberg
2005-05-09Jeremy Brown's OpenSSL thread-locking exampleDaniel Stenberg
2005-05-09Jamie Lokier added. And I now recounted the amount better: 437 named as of now.Daniel Stenberg
2005-05-09update the "PORTS" section a littleDaniel Stenberg
2005-05-09add multi-thread details for GnuTLSDaniel Stenberg
2005-05-09Jeff is short for JeffreyDaniel Stenberg
2005-05-09updated with the current RELEASE-NOTES namesDaniel Stenberg
2005-05-09I decided to make this list more complete. I took the 5-year anniversary listDaniel Stenberg
from 2003 and added all names from all release notes in the CVS (there is a slight gap though). I removed names with only first names (Like "Chris" and "Ralph") , as that won't make anyone happy and we might list their full names as well anyway. This list is now intended to include _all_ people that contribute: big or small. 389 names at the time of this commit.
2005-05-07January 2003. Started working on the distributed curl tests. The autobuilds.Daniel Stenberg
2005-05-02Sort of "fixed" KNOWN_BUGS #4: curl now builds IPv6 enabled on AIX 4.3. AtDaniel Stenberg
least it should no longer cause a compiler error. However, it does not have AI_NUMERICHOST so we cannot getaddrinfo() any numerical addresses with it (we use that for FTP PORT/EPRT)! So, I modified the configure check that checks if the getaddrinfo() is working, to use AI_NUMERICHOST since then it'll fail on AIX 4.3 and it will automatically build with IPv6 support disabled.
2005-05-02Added --trace-time that when used adds a time stamp to each trace line thatDaniel Stenberg
--trace, --trace-ascii and --verbose output. I also made the '>' display separate each line on the linefeed so that HTTP requests etc look nicer in the -v output.
2005-05-02Bryan Henderson's fine update of SSL_VERIFYPEER and SSL_VERIFYHOSTDaniel Stenberg
2005-04-28Updated with (new and old) default config file search path explanation.Daniel Stenberg
2005-04-25be specific about what max_fd contains after a callDaniel Stenberg
2005-04-18digest works in the proxyauth tooDaniel Stenberg
2005-04-17somewhat clarified that this only sets the fd_sets and expects them to beDaniel Stenberg
cleared before this function is called
2005-04-16clarify that > in the verbose output can contain newlinesDaniel Stenberg
2005-04-13Mention GnuTLS and fix a few spelling errors.Dan Fandrich
2005-04-13GnuTLS supportDaniel Stenberg
2005-04-13extended the multi-thread explanationDaniel Stenberg
2005-04-11refreshDaniel Stenberg
2005-04-115.12 Can I make libcurl fake or hide my real IP address?Daniel Stenberg
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