Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-28 | check for failing strdup()s | Daniel Stenberg | |
2004-05-27 | fixed curl_easy_duphandle() to properly clean up all memory if any memory | Daniel Stenberg | |
function fails and it returns NULL | |||
2004-05-26 | Mohun Biswas added release-zlib and debug-zlib targets. | Daniel Stenberg | |
2004-05-26 | three new functions in the public API | Daniel Stenberg | |
2004-05-26 | Added a new 'bit' in the connect struct named 'tunnel_proxy' that is set | Daniel Stenberg | |
if a connection is tunneled through a proxy. A tunnel is done with CONNECT, either when using HTTPS or FTPS, or if explicitly enabled by the app. | |||
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg | |
2004-05-25 | Massimiliano Ziccardi's updates for the VC6 makefiles | Daniel Stenberg | |
2004-05-25 | preprocessor magic around the libidn idn_free() stuff to remain workable | Daniel Stenberg | |
both with older libidn versions without idn_free() and with libidn versions that gets installed without idn-free.h | |||
2004-05-25 | remove trailing whitespace | Daniel Stenberg | |
2004-05-24 | delete trailing whitespace | Daniel Stenberg | |
2004-05-24 | only idn_free() if built with libidn | Daniel Stenberg | |
2004-05-24 | delete trailing whitespace | Daniel Stenberg | |
2004-05-24 | Simon Josefsson added a idn_free() function in libidn 0.4.5 as a reaction to | Daniel Stenberg | |
Gisle's previous mail. We now use this function, and thus we require libidn 0.4.5 or later. No earler version will do. | |||
2004-05-24 | Robert D. Young reported that CURLOPT_COOKIEFILE and CURLOPT_COOKIE could | Daniel Stenberg | |
not be used both in one request. Fixed it and added test case 172 to verify. | |||
2004-05-21 | While talking to host a.b.c, libcurl did wrongly not accept cookies that were | Daniel Stenberg | |
set to the domain .a.b.c (that is with a dot prefix). This is now fixed and test case 171 verifies it. | |||
2004-05-21 | quickfix to avoid division by zero, possibly we should go over all of these | Daniel Stenberg | |
once and for all | |||
2004-05-20 | calculate upload and download speed using doubles to keep precision. | Daniel Stenberg | |
deleted trailing whitespace | |||
2004-05-19 | killed trailing whitespace | Daniel Stenberg | |
2004-05-18 | + when storing the address in the cache fails, cleanup the resolved address | Daniel Stenberg | |
properly + delete trailing whitespace | |||
2004-05-18 | * seed_enough() was converted to a macro to avoid the IRIX compiler warning | Daniel Stenberg | |
about that passed-in argument not being used. * killed trailing whitespace | |||
2004-05-17 | if shrinking the buffer fails, use the older larger one | Daniel Stenberg | |
2004-05-17 | Peter Sylvester's patch that addresses two flaws in the peer certificate name | Daniel 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 | new Curl_done() proto | Daniel Stenberg | |
2004-05-17 | I made Curl_done() take a pointer-pointer in the first argument instead, and | Daniel 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-17 | better bailing out on memory failure | 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-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-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 | |