aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-19just code formatting and killed whitespaceDaniel Stenberg
2004-05-19language!Daniel Stenberg
2004-05-19Set CURLOPT_USERAGENT tooDaniel Stenberg
2004-05-19The kill trailing whitespace needs to be set better as this way it takesDaniel Stenberg
effect globally which isn't nice. Commented it out for now. Display trailing whitespace still, to remind me.
2004-05-18simplified all die messagesDaniel Stenberg
2004-05-18simplified the automake failed message tooDaniel Stenberg
2004-05-18make this script tell that this is the obsolete version, to make it possibleDaniel Stenberg
to detect
2004-05-18simplified the die-line when aclocal fails, the previous one confusedDaniel Stenberg
the netbsd shell
2004-05-18+ when storing the address in the cache fails, cleanup the resolved addressDaniel Stenberg
properly + delete trailing whitespace
2004-05-18* seed_enough() was converted to a macro to avoid the IRIX compiler warningDaniel Stenberg
about that passed-in argument not being used. * killed trailing whitespace
2004-05-17if shrinking the buffer fails, use the older larger oneDaniel Stenberg
2004-05-17Peter Sylvester's patch that addresses two flaws in the peer certificate nameDaniel Stenberg
verification: - when multiple common names are used (as in the curl tests), the last name needs to be selected. - allow comparing with encoded values, at least with BMP and ISO latin1 encoded T61strings.
2004-05-17'make test-torture' in the root now runs a full torture testDaniel Stenberg
2004-05-17removed debug output and trailing whitespaceDaniel Stenberg
2004-05-17grrr, fix the check again if no ftp server at all is runningDaniel Stenberg
2004-05-17torture testing and a moved CVS repoDaniel Stenberg
2004-05-17new Curl_done() protoDaniel Stenberg
2004-05-17I made Curl_done() take a pointer-pointer in the first argument instead, andDaniel Stenberg
if the connection is killed it blanks the pointer it points to, to make it easier to detect usage problems whereever Curl_done() is used.
2004-05-17better bailing out on memory failureDaniel Stenberg
2004-05-17When waiting for the second connect, we now use alarm to timeout the waiting.Daniel Stenberg
This is necessary in case the client never connects or somehow fails to do it timely. The timeout used now is only 2 seconds, which might cause problems on really slow hosts but longer times are painful when doing torture testing on FTP test cases. I'm not sure how this 'alarm' functionality works on Windows or other systems that don't actually have the alarm() function.
2004-05-17improved the check for our own ftp serverDaniel Stenberg
2004-05-17modified to not leak memory if a libcurl function returns failure, for betterDaniel Stenberg
memory leak detection
2004-05-17Seshubabu Pasam's format fixes and added notes about DER not working forDaniel Stenberg
some (SSL-)options.
2004-05-17make it not leak memory when it returns prematurelyDaniel Stenberg
2004-05-17automatically delete trailing white space on save in curl-modeDaniel Stenberg
2004-05-17bail out nicely if strdup() returns NULL, removed trailing whitespaceDaniel Stenberg
2004-05-17deleted trailing whitespaceDaniel Stenberg
2004-05-17fixed a warning on IRIX, deleted trailing whitespaceDaniel Stenberg
2004-05-14added string for the new share error codeDaniel Stenberg
2004-05-14Added CURLSHE_NOMEMDaniel Stenberg
2004-05-14clean up properly on failure to enable easier libcurl leak detectionDaniel Stenberg
2004-05-14new cvs instructionsDaniel Stenberg
2004-05-14enable memory debugging the same way the curl command line tool already doesDaniel Stenberg
2004-05-13memory cleanup and check fixDaniel Stenberg
2004-05-13check that memory allocation functions truly return good data or bail outDaniel Stenberg
2004-05-13return on memory alloc failDaniel Stenberg
2004-05-13better bailing out in case of no memoryDaniel Stenberg
2004-05-13curl_free() doesn't free(NULL) but just returnsDaniel Stenberg
2004-05-13deal with input arguments as NULLDaniel Stenberg
2004-05-13return CURLDIGEST_NOMEM when a memory function fails to deliverDaniel Stenberg
2004-05-13mark a value as alloced when strdup()ed to prevent memory leaksDaniel Stenberg
2004-05-13bail out when no memory occursDaniel Stenberg
2004-05-13Gisle Vamem reintroduced the verifyconnect() call on windows as well, andDaniel Stenberg
we now use it to provide more info back on connect failures.
2004-05-13Gisle: minor fixDaniel Stenberg
2004-05-13no more Curl_ldap_doneDaniel Stenberg
2004-05-13Added two two missing header files I missed when I removed the noinst_HEADERSDaniel Stenberg
2004-05-13added https.cDaniel Stenberg
2004-05-13basic https fetching scriptDaniel Stenberg
2004-05-13made 'runtests.pl -t' run over all the tests just like other command linesDaniel Stenberg
Also made -t imply -n to disable valgrind, it runs sloooow otherwise. This now manages to run all tests OK up to test case 100 (the first FTP one) for me.
2004-05-13James Bursa's patch to avoid free(NULL) (mainly because the libcurl memdebugDaniel Stenberg
system thinks free(NULL) is badness)