aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-14Fixed typo in test titleDan Fandrich
2007-12-13Fix compiler warningYang Tse
2007-12-13David Wright filed bug report #1849764Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1849764) with an included fix. He identified a problem for re-used connections that previously had sent Expect: 100-continue and in some situations the subsequent POST (that didn't use Expect:) still had the internal flag set for its use. David's fix (that makes the setting of the flag in every single request unconditionally) is fine and is now used!
2007-12-12Gilles Blanc made the curl tool enable SO_KEEPALIVE for the connections andDaniel Stenberg
added the --no-keep-alive option that can disable that on demand.
2007-12-11clarify that the CURLMOPT_TIMERFUNCTION callback can pass in 0 and -1 as legalDaniel Stenberg
values and what they mean
2007-12-11build acountry tooDaniel Stenberg
2007-12-11Added acountry.c.Gisle Vanem
2007-12-11Added build of acountry.nlm.Gisle Vanem
2007-12-11Added build of acountry.exe.Gisle Vanem
2007-12-11Build acountry.exe. Added 'socklen_t' define.Gisle Vanem
2007-12-11Another sample application that returns country-code andGisle Vanem
name from an IPv4-address or host-name. Using the service of countries.nerd.dk.
2007-12-10grrr, the previous commit was meant to properly make sure that we don'tDaniel Stenberg
link any executables when doing debug builds since they kind of assume symbols provided by libcurl, but it also wrongly included acountry.c
2007-12-10when buildingDaniel Stenberg
2007-12-10build ahost and adig by default but don't install themDaniel Stenberg
2007-12-10Define new options in OS400 RPG interfacePatrick Monnerat
Port OS400 compilation scripts to >= V5R2M0
2007-12-10Fix for targets that do have 'struct in6_addr', but which doesn'tGisle Vanem
define 's6_addr' as a macro.
2007-12-10cut out the number of contributors from this file since it'll always be wrongDaniel Stenberg
2007-12-105.13 How do I stop an ongoing transfer?Daniel Stenberg
2007-12-09Andrew Moise filed bug report #1847501Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1847501) and pointed out a memcpy() that should be memmove() in the convert_lineends() function.
2007-12-09add in toc tooDaniel Stenberg
2007-12-09RTMP support?Daniel Stenberg
2007-12-09oops another bad numberingDaniel Stenberg
2007-12-09oops duplicate numberingDaniel Stenberg
2007-12-09slightly rephrasedDaniel Stenberg
2007-12-09Removed use of '..\lib\libcurl_wc.lib' as this is not reallyGisle Vanem
a static-lib. Renamed 'OBJ_DIR' to 'WC_Win32.obj'.
2007-12-09Removed building 'libcurl_wc.lib' as this isn't a static-libraryGisle Vanem
in the common sense. Renamed 'OBJ_DIR' to 'WC_Win32.obj'.
2007-12-08Travelling some 500km by train back and forth on the same day gives you timeDaniel Stenberg
to do things you don't otherwise do, but here's the summary of today's work...
2007-12-08reformat to FAQ/CONTRIBUTE style, for nicer web-look when I apply the magicDaniel Stenberg
script(s) on it online
2007-12-08cleanupDaniel Stenberg
2007-12-08fix a crash in oom situations (thanks runtests.pl -t!)Daniel Stenberg
2007-12-08add keywordsDaniel Stenberg
2007-12-08add missing filesDaniel Stenberg
2007-12-08correct the comment about sizeDaniel Stenberg
2007-12-08add test 549 and 550Daniel Stenberg
2007-12-08mention how to enable chunked encoding for POSTsDaniel Stenberg
2007-12-08All static functions that were previously name Curl_* something no longerDaniel Stenberg
use that prefix as we use that prefix only for library-wide internal global symbols.
2007-12-06clarify that when curl_multi_timeout() returns -1 it just means that thereDaniel Stenberg
is no current timeout. It does not mean wait forever and it does not mean do not wait at all. It means there is no timeout value known at this point in time.
2007-12-05Spacen Jasset reported a problem with doing POST (with data read with aDaniel Stenberg
callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using callback only. Spacen worked with us to provide a useful patch. I added the test case 547 and 548 to verify two variations of POST over proxy with NTLM.
2007-12-05fix compiler warningDaniel Stenberg
2007-12-05added test548 which uses the lib547 source file, preparing for test547 whichDaniel Stenberg
is supposed to repeat the bug report "NTLM proxy authentication with CURLOPT_READDATA seems broken." posted on the curl-library mailing list on dec 3 2007.
2007-12-04Fix compiler warning: variable may be used uninitializedYang Tse
2007-12-03Ray Pekowski filed bug report #1842029Daniel Stenberg
2007-12-03Fix three issues previous cleanup introduces.Yang Tse
2007-12-03SSL session id caching bugfixDaniel Stenberg
2007-12-03Bug report #1842029 (http://curl.haxx.se/bug/view.cgi?id=1842029) identifiedDaniel Stenberg
a problem with SSL session caching that prevent it from working, and the associated fix!
2007-12-03mention "no longer default-appends ;type= on FTP URLs thru proxies" as a bugDaniel Stenberg
fix even if kind of implied by the new option
2007-12-03Now libcurl (built with OpenSSL) doesn't return error anymore if the remoteDaniel Stenberg
SSL-based server doesn't present a certificate when the request is told to ignore certificate verification anyway.
2007-12-03 Erik Kline cleaned up ares_gethostbyaddr.c:next_lookup() somewhatDaniel Stenberg
2007-12-03Brad Spencer fixed the configure script to assume that there's noDaniel Stenberg
/dev/urandom when built cross-compiled as then the script cannot check for it.
2007-12-03removed the ;type= thing for FTP urls through proxy, since that's now onlyDaniel Stenberg
present when enabled by on option which isn't done by default (and isn't even available for the curl app atm)