aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-08-04killed trailing whitespace, narrowed a few lines to 80 colsDaniel Stenberg
2005-08-01mention that the NOBODY reset thing is added in 7.14.1Daniel Stenberg
2005-07-30Moved items from TODO-RELEASE to TODO since they're not really bound to happenDaniel Stenberg
in any specific release.
2005-07-30clarified the PHP/CURL topic a bit moreDaniel Stenberg
2005-07-30correction and added new mirrorDaniel Stenberg
2005-07-30CURLOPT_COOKIELIST change since it no longer modifies the input string contentsDaniel Stenberg
2005-07-28reset the numcookies counter too (I missed it in the previous commit)Daniel Stenberg
2005-07-28fixed example since this is how the interface works nowDaniel Stenberg
2005-07-28now strdups the cookielist inpointer before passed on, as the cookie functionDaniel Stenberg
modifies it
2005-07-28curl standard indent/formatDaniel Stenberg
2005-07-28Needs 'struct_stat'. Increased verbosity.Gisle Vanem
2005-07-27If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST isDaniel Stenberg
set to 1, CURLOPT_NOBODY will now automatically be set to 0.
2005-07-27Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is aDaniel Stenberg
simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code.
2005-07-27disabling HTTP should also nullify this function callDaniel Stenberg
2005-07-27Fixed --without-gnutlsDan Fandrich
2005-07-21Fixed some typos in output messages.Dan Fandrich
2005-07-20Properly support the options --without-spnego --without-gssapi --without-krb4Dan Fandrich
2005-07-20Add -Wdeclaration-after-statement to gcc to detect accidental C99-styleDan Fandrich
variable declarations.
2005-07-17Simplified the code within curl_easy_perform() that calls Curl_perform().Daniel Stenberg
Pointed out by Bjorn Reese.
2005-07-15cURLpp 0.5.1Daniel Stenberg
2005-07-13Diego Casorran patches to make (lib)curl build fine on Amiga againDaniel Stenberg
2005-07-13better description for HEADERFUNCTIONDaniel Stenberg
2005-07-13elaborate a bit on how to deal with chunked-encoded trailers that now areDaniel Stenberg
passed to the app using the header callback
2005-07-13converted this back to one name per line to make it easier/better to diffDaniel Stenberg
and merge when new names are added
2005-07-12mention the Rexx/CURL releaseDaniel Stenberg
2005-07-12Adrian Schuur added trailer support in the chunked encoding stream. TheDaniel Stenberg
trailer is then sent to the normal header callback/stream.
2005-07-08mention an old ideaDaniel Stenberg
2005-07-07mention the exception only once ;-)Daniel Stenberg
2005-07-05correction for the 407 with response-body caseDaniel Stenberg
2005-07-05Update copyright.Gisle Vanem
2005-07-05Gisle Vanem came up with a nice little work-around for bug #1230118. ItDaniel Stenberg
seems the Windows (MSVC) libc time functions may return data one hour off if TZ is not set and automatic DST adjustment is enabled. This made curl_getdate() return wrong value, and it also concerned internal cookie expirations etc.
2005-07-04mention the strerror_r detection fix in configureDaniel Stenberg
2005-07-03Andrew Bushnell provided enough info for me to tell that we badly needed toDaniel Stenberg
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify.
2005-06-30add more info when this script gets confused, and added getaddrinfo andDaniel Stenberg
freeaddrinfo to the trace output
2005-06-30use %p to printf pointers since %x doesn't work properly on tru64 for thisDaniel Stenberg
(and besides, we should be using the same %-code for all pointers)
2005-06-30enable memory debugging on tru64 with ipv6 support by doing a little differentDaniel Stenberg
defining, since the system headers themselves redefine getaddrinfo
2005-06-30Detect (or at least infer) glibc-style strerror_r even when cross-compiling.Dan Fandrich
2005-06-28new Lua bindingDaniel Stenberg
2005-06-26clarify that ftp ascii transfers don't do right in current libcurlDaniel Stenberg
2005-06-23added docs about the new proxy string supportDaniel Stenberg
2005-06-22David Shaw fixesDaniel Stenberg
2005-06-22mention more ARMsDaniel Stenberg
2005-06-22verify that the URL decoding is done properly tooDaniel Stenberg
2005-06-22David Shaw's fix that unifies proxy string treatment so that a proxy givenDaniel Stenberg
with CURLOPT_PROXY can use a http:// prefix and user + password. The user and password fields are now also URL decoded properly. Test case 264 added to verify.
2005-06-22David Shaw's updated version:Daniel Stenberg
It now properly handles code that uses curl_free() (since not all versions of curl have it), and also fixes a few problems when detecting libcurl on MinGW, and a linker problem on OSX Panther.
2005-06-20mistakeDaniel Stenberg
2005-06-19possible windows memory leak fixed by GisleDaniel Stenberg
2005-06-19Added some checks for the addrinfo structure.Dominick Meglio
2005-06-14Ensure thread handle is closed too.Gisle Vanem
2005-06-134.13 Why is curl -R on Windows one hour off?Daniel Stenberg