Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-02-09 | better error checking and SSL init by David Byron | Daniel Stenberg | |
2005-01-29 | Define CURL_MULTIEASY when building this, to use my new curl_easy_perform() | Daniel Stenberg | |
that uses the multi interface to run the request. It is a great testbed for the multi interface and I believe we shall do it this way for real in the future when we have a successor to curl_multi_fdset(). | |||
2005-01-11 | Renamed easy.h and multi.h to easyif.h and multiif.h to make sure they don't | Daniel Stenberg | |
shadow our public headers with the former names. | |||
2005-01-10 | Pavel Orehov reported memory problems with the multi interface in bug report | Daniel Stenberg | |
#1098843. In short, a shared DNS cache was setup for a multi handle and when the shared cache was deleted before the individual easy handles, the latter cleanups caused read/writes to already freed memory. | |||
2004-12-22 | C ensures that static variables are initialized to 0 | Dan Fandrich | |
2004-12-05 | Dan Fandrich added the --disable-cookies option to configure to build | Daniel Stenberg | |
libcurl without cookie support. This is mainly useful if you want to build a minimalistic libcurl with no cookies support at all. Like for embedded systems or similar. | |||
2004-11-11 | Fix behaviour when passing NULL to CURLOPT_POSTFIELDS and CURLOPT_HTTPPOST. | Daniel Stenberg | |
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-04 | Made the dns entry remain locked while a connection to the host remains to | Daniel Stenberg | |
allow verbose output during this period. Bertrand Demiddelaer reported and helped fixing. | |||
2004-09-28 | Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakingly | Daniel Stenberg | |
enable the progress meter. | |||
2004-07-24 | curl_easy_reset() added. Need testing and docs. I also think we should make | Daniel Stenberg | |
the initial setting up the struct should use this single function to avoid having the initialisation code at two places. | |||
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
2004-06-09 | Alexander Krasnostavsky's fix to make libcurl build fine with configure | Daniel Stenberg | |
--disable-http, which thus builds a libcurl without HTTP support. | |||
2004-06-02 | very minor format edit | 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-13 | deal with input arguments as NULL | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-04-29 | curl_easy_duphandle() works again with ares enabled | Daniel Stenberg | |
2004-04-27 | IDN: Gisle Vanem made the win32 version handle a missing CHARSET environment | Daniel Stenberg | |
and then figure it out with a suitable windows call. | |||
2004-04-26 | added function headers and comments | Daniel Stenberg | |
2004-03-30 | adjusted to the new dns cache function to hide more hostip internals | Daniel Stenberg | |
2004-03-15 | if the global_init() is called from within curl_easy_init() and returns | Daniel Stenberg | |
an error code, we now make curl_easy_init fail and return NULL. | |||
2004-03-03 | David Byron's work on making libcurl only require winsock 1.1 on Windows | Daniel Stenberg | |
machines. | |||
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg | |
2004-01-13 | Diego Casorran's fixes to allow native AmigaOS builds | Daniel Stenberg | |
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg | |
2003-10-14 | Kimmo Kinnunen fixed a crash with duphandle() when CURLDEBUG was set | Daniel Stenberg | |
2003-10-14 | Gisle Vanem's IPv6-on-Windows patch applied! | Daniel Stenberg | |
2003-08-14 | return failure when the host cache creation fails | Daniel Stenberg | |
2003-08-11 | the new cookie functions that require 'data' passed in | Daniel Stenberg | |
2003-08-04 | Dirk Manske's patch that introduces cookie support to the share interface. | Daniel Stenberg | |
2003-07-25 | Removed #include <sys/resource.h>, as pointed out by Henry Bland we don't | Daniel Stenberg | |
need it. | |||
2003-04-22 | Peter Sylvester pointed out that curl_easy_setopt() will always (wrongly) | Daniel Stenberg | |
return CURLE_OK no matter what happens. | |||
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-06 | fix bug (?) :-) | Sterling Hughes | |
previously, if you called curl_easy_perform and then set the global dns cache, the global cache wouldn't be used. I don't see this really happening in practice, but this code allows you to do it. | |||
2002-11-26 | fixed Curl_freeaddrinfo() to only free addrinfo, and added Curl_freednsinfo() | Daniel Stenberg | |
for freeing single dns cache entries | |||
2002-09-03 | updated source code boilerplate/header | Daniel Stenberg | |
2002-05-07 | support for ingoring session cookies added | Daniel Stenberg | |
2002-04-27 | Now uses Curl_ as prefix for internal global symbols. curl_ should only be | Daniel Stenberg | |
used for "exported" globals. | |||
2002-03-19 | copyright string (year) update | Daniel Stenberg | |
2002-01-07 | Make cach'ing work with threads now, there are now three cases: | Sterling Hughes | |
- Use a global dns cache (via setting the tentatively named, CURLOPT_DNS_USE_GLOBAL_CACHE option to true) - Use a per-handle dns cache, by default - Use a pooled dns cache when in the "multi" interface | |||
2002-01-03 | Sterling Hughes' provided initial DNS cache source code. | Daniel Stenberg | |
2001-10-19 | curl_easy_duphandle() now properly clones the cookie option | Daniel Stenberg | |
- patch by T. Bharath | |||
2001-10-11 | looks nicer and is better compatible with older vim versions | Sterling Hughes | |
2001-09-17 | Linus Nielsen Feltzing's telnet-for-win32 fixes | Daniel Stenberg | |
2001-09-12 | T. Bharath's patch that sets up a few necessary buffers in the duphandle() | Daniel Stenberg | |
function | |||
2001-09-07 | Added formatting sections for emacs and vim | Sterling Hughes | |
2001-09-05 | first shaky and stumbling attempts at a *_duphandle() function | Daniel Stenberg | |