Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-17 | When 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-17 | improved the check for our own ftp server | Daniel Stenberg | |
2004-05-17 | modified to not leak memory if a libcurl function returns failure, for better | Daniel Stenberg | |
memory leak detection | |||
2004-05-17 | Seshubabu Pasam's format fixes and added notes about DER not working for | Daniel Stenberg | |
some (SSL-)options. | |||
2004-05-17 | make it not leak memory when it returns prematurely | Daniel Stenberg | |
2004-05-17 | automatically delete trailing white space on save in curl-mode | Daniel Stenberg | |
2004-05-17 | bail out nicely if strdup() returns NULL, removed trailing whitespace | Daniel Stenberg | |
2004-05-17 | deleted trailing whitespace | Daniel Stenberg | |
2004-05-17 | fixed a warning on IRIX, deleted trailing whitespace | Daniel Stenberg | |
2004-05-14 | added string for the new share error code | Daniel Stenberg | |
2004-05-14 | Added CURLSHE_NOMEM | Daniel Stenberg | |
2004-05-14 | clean up properly on failure to enable easier libcurl leak detection | Daniel Stenberg | |
2004-05-14 | new cvs instructions | Daniel Stenberg | |
2004-05-14 | enable memory debugging the same way the curl command line tool already does | Daniel Stenberg | |
2004-05-13 | memory cleanup and check fix | Daniel Stenberg | |
2004-05-13 | check that memory allocation functions truly return good data or bail out | Daniel Stenberg | |
2004-05-13 | return on memory alloc fail | Daniel Stenberg | |
2004-05-13 | better bailing out in case of no memory | Daniel Stenberg | |
2004-05-13 | curl_free() doesn't free(NULL) but just returns | Daniel Stenberg | |
2004-05-13 | deal with input arguments as NULL | Daniel Stenberg | |
2004-05-13 | return CURLDIGEST_NOMEM when a memory function fails to deliver | Daniel Stenberg | |
2004-05-13 | mark a value as alloced when strdup()ed to prevent memory leaks | Daniel Stenberg | |
2004-05-13 | bail out when no memory occurs | Daniel Stenberg | |
2004-05-13 | Gisle Vamem reintroduced the verifyconnect() call on windows as well, and | Daniel Stenberg | |
we now use it to provide more info back on connect failures. | |||
2004-05-13 | Gisle: minor fix | Daniel Stenberg | |
2004-05-13 | no more Curl_ldap_done | Daniel Stenberg | |
2004-05-13 | Added two two missing header files I missed when I removed the noinst_HEADERS | Daniel Stenberg | |
2004-05-13 | added https.c | Daniel Stenberg | |
2004-05-13 | basic https fetching script | Daniel Stenberg | |
2004-05-13 | made 'runtests.pl -t' run over all the tests just like other command lines | Daniel 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-13 | James Bursa's patch to avoid free(NULL) (mainly because the libcurl memdebug | Daniel Stenberg | |
system thinks free(NULL) is badness) | |||
2004-05-12 | Check that memory functions return non-NULL or return error. | Daniel Stenberg | |
2004-05-12 | make sure the returned pointer is NULL when encoding fails | Daniel Stenberg | |
2004-05-12 | clean up and return better on out of memory | Daniel Stenberg | |
2004-05-12 | return NULL on out of memory | Daniel Stenberg | |
2004-05-12 | Curl_done() and the protocol-specific conn->curl_done() functions now all | Daniel Stenberg | |
take a CURLcode as a second argument, that is non-zero when Curl_done() is called after an error was returned from Curl_do() (or similar). | |||
2004-05-12 | return faster when we "hit a wall" while printfing | Daniel Stenberg | |
2004-05-12 | general cleanup to bail out nice and clean when a memory function fails | Daniel Stenberg | |
to deliver | |||
2004-05-12 | even if Curl_do() fails, we must call Curl_done() to do proper cleaning up | Daniel Stenberg | |
2004-05-12 | improved cleaning up in case of memory allocation failures | Daniel Stenberg | |
2004-05-12 | bail out if we can't allocate the new range string, and make use of aprintf() | Daniel Stenberg | |
instead of using snprintf() + strdup(). | |||
2004-05-12 | Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG is | Daniel Stenberg | |
defined (which it never is atm). Now, we can focus on making 'runtests -t [num]' work on all test cases and we should never leak nor crash. | |||
2004-05-12 | new man page | Daniel Stenberg | |
2004-05-12 | use size_t better for buffer and alloc lengths | Daniel Stenberg | |
2004-05-12 | removed another jhrg-reference in a comment | Daniel Stenberg | |
2004-05-12 | Edited comments only. | Daniel Stenberg | |
2004-05-12 | The Curl_unencode_XXX_write() function take a ssize_t as third argument, so | Daniel Stenberg | |
we typecast on invoke. | |||
2004-05-12 | Left-over from before the return-code fix. This is probably the code that | Daniel Stenberg | |
causes xlc and gcc act differently on AIX. | |||
2004-05-11 | fixed Curl_open() to not leak anything if one malloc() fails, fix by | Daniel Stenberg | |
James Bursa only modified by me. | |||
2004-05-11 | - Nico Stappenbelt reported that when processing domain and search lines in | Daniel Stenberg | |
the resolv.conf file, the first entry encountered is processed and used as the search list. According to the manual pages for both Linux, Solaris and Tru64, the last entry of either a domain or a search field is used. |