aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-08-17removed issue 20 that was about valgrind complaints on other libs/parts, asDaniel Stenberg
we have a fancier valgrind error parser these days and it seems to work rather well
2005-08-17the SOCKS situationDaniel Stenberg
2005-08-17removed old info about curl_getdate() just simply isn't true and hasn't beenDaniel Stenberg
true since the getdate() parser code rewrite
2005-08-17remove the typecast to long from time_t, since we now store it as curl_off_tDaniel Stenberg
2005-08-17handles expiry times in cookie files that go beyond 32 bits in sizeDaniel Stenberg
2005-08-17- Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (withDaniel Stenberg
CURLOPT_COOKIEFILE), add a cookie (with CURLOPT_COOKIELIST), tell it to write the result to a given cookie jar and then never actually call curl_easy_perform() - the given file(s) to read was never read but the output file was written and thus it caused a "funny" result. - While doing some tests for the bug above, I noticed that Firefox generates large numbers (for the expire time) in the cookies.txt file and libcurl didn't treat them properly. Now it does.
2005-08-16added curl_mvsnprintf to the export list; I appened to the end cause of the ↵Gunter Knauf
numbering ...
2005-08-16added curl_mvsnprintf to the export list.Gunter Knauf
2005-08-16client side fixesDaniel Stenberg
2005-08-16typecase the isspace() argument to intDaniel Stenberg
2005-08-15recent changesDaniel Stenberg
2005-08-15Added more verbose "warning" messages to the curl client for cases where itDaniel Stenberg
fails to open/read files etc to help users diagnose why it doesn't do what you'd expect it to. Converted lots of old messages to use the new generic function I wrote for this purpose.
2005-08-13James Bursa identified a libcurl HTTP bug and a good way to repeat it. If aDaniel Stenberg
site responds with bad HTTP response that doesn't contain any header at all, only a response body, and the write callback returns 0 to abort the transfer, it didn't have any real effect but the write callback would be called once more anyway.
2005-08-12added test 268 that makes curl -d @nonexistingDaniel Stenberg
2005-08-12clarifyDaniel Stenberg
2005-08-12o curl -d @filename when 'filename' was not possible to access no longerDaniel Stenberg
converts the request to a GET, but now instead makes it a POST of no data o The time condition illegal syntax warning is now inhibited if -s is used.
2005-08-12-H needs no CRLF or similar addedDaniel Stenberg
2005-08-11removed old debug left-over infof() callDaniel Stenberg
2005-08-11do a POST with NTLM and add two custom headersDaniel Stenberg
2005-08-11Added comment about strtoimax()Daniel Stenberg
2005-08-11fix for NetWare crossbuilds to display the right config.h when build on Win32.Gunter Knauf
2005-08-10the debug callback was called with CURLINFO_TEXT with the data size oneDaniel Stenberg
too big
2005-08-10minor Makefile fix.Gunter Knauf
2005-08-10minor Makefile fix.Gunter Knauf
2005-08-10added some more NetWare targets.Gunter Knauf
2005-08-10some minor Makefile fixes for SSL.Gunter Knauf
2005-08-10make ares compile again for NetWare.Gunter Knauf
2005-08-10make ares compile again for NetWare.Gunter Knauf
2005-08-10fixed line endings so it works again with gnu make on Win32.Gunter Knauf
2005-08-09Christopher R. Palmer fixed the offsets used for date parsings when the timeDaniel Stenberg
zone name of a daylight savings time was used. For example, PDT vs PDS. This flaw was introduced with the new date parser (11 sep 2004 - 7.12.2). Fortunately, no web server or cookie string etc should be using such time zone names thus limiting the effect of this bug.
2005-08-08mention two other bugs we should fix before releaseDaniel Stenberg
2005-08-07Jon Grubbs filed bug report #1249962 which identified a problem with NTLM on aDaniel Stenberg
HTTP proxy if an FTP URL was given. libcurl now properly switches to pure HTTP internally when an HTTP proxy is used, even for FTP URLs. The problem would also occur with other multi-pass auth methods.
2005-08-07When curl is built with GnuTLS, curl-config didn't include "SSL" whenDaniel Stenberg
--features was used
2005-08-07Don't prevent FTPS:// through a http proxy, as we cannot know if it works orDaniel Stenberg
not!
2005-08-07mention our security related mail alias in the "who do I mail" sectionDaniel Stenberg
2005-08-04Support realloc() on a NULL pointer properly (printf(%p) on a NULL pointerDaniel Stenberg
outputs (nil) and not a 0x0 or similar.
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