aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-21Ale Vesely fixed CURLOPT_INTERFACE when using a hostnameDaniel Stenberg
2006-04-21each socket is used by exactly one easy handle, but of course each easy handleDaniel Stenberg
can and will use more than one socket
2006-04-21added SPL and XBLiteDaniel Stenberg
2006-04-20removed -fpack-struct because gcc4 seems to know its obsolete and warns...Gunter Knauf
2006-04-19detect ICC and pass on "-we 147" so that the configure checks for functionDaniel Stenberg
arguments work properly - and the option is not harmful for the rest of the curl build either!
2006-04-19the new conversion stuff documented (mostly by David McCreedy)Daniel Stenberg
2006-04-19CURL_VERSION_CONV is returned by curl_version_info if libcurl has been builtDaniel Stenberg
to allow/support character conversions
2006-04-18mention the recent thoughts/progress I hadDaniel Stenberg
2006-04-18Robson Braga Araujo provided a patch that makes libcurl less eager to closeDaniel Stenberg
the control connection when using FTP, for example when you remove an easy handle from a multi stack.
2006-04-18mention Katie Wang as author of the patchDaniel Stenberg
2006-04-18corrected the SSL timeout, as Ates Goral's patch did it and that works (opposedDaniel Stenberg
to my previous brain-damaged version)
2006-04-18attempt to silence the MIPSPro compiler warningDaniel Stenberg
2006-04-18avoid a warning about declaring a variable that shadows an earlier declaredDaniel Stenberg
one
2006-04-18there's an curl_easy_unescape too nowDaniel Stenberg
2006-04-17minor Makefile fix - let's go 2006;Gunter Knauf
use correct version var.
2006-04-17added missing symbol export.Gunter Knauf
2006-04-12added splayDaniel Stenberg
2006-04-12Added splay.c.Gisle Vanem
2006-04-12Add "multiif.h" for GETSOCK_WRITESOCK() macro.Gisle Vanem
2006-04-11#1468330 (http://curl.haxx.se/bug/view.cgi?id=1468330) pointed out a badDaniel Stenberg
typecast in the curl tool leading to a crash with (64bit?) VS2005 (at least) since the struct timeval field tv_sec is an int while time_t is 64bit.
2006-04-11adjusted to the new internal *_getsock() concept for providing info internallyDaniel Stenberg
about what sockets to wait for what action on
2006-04-11added docs and removed protoDaniel Stenberg
2006-04-10mention recent additionsDaniel Stenberg
2006-04-10adding the new man pages to the packageDaniel Stenberg
2006-04-10Ates Goral found out that if you specified both CURLOPT_CONNECTTIMEOUT andDaniel Stenberg
CURLOPT_TIMEOUT, the _longer_ time would wrongly be used for the SSL connection time-out!
2006-04-10First curl_multi_socket() commit. Should primarily be considered as an internalDaniel Stenberg
code rearrange to fit the future better.
2006-04-10This no longer needs the extra define!Daniel Stenberg
2006-04-10added README.multi_socketDaniel Stenberg
2006-04-10state of the multi_socket API worksDaniel Stenberg
2006-04-10check for fork() as well, so that we can build the sws http test server withDaniel Stenberg
fork support for cooler tests
2006-04-10avoid duplicate typedefs, as this type is also defined in our public headersDaniel Stenberg
2006-04-10curl_multi_socket() updatesDaniel Stenberg
2006-04-10if configure found a fork(), sws supports --fork which is *NOT* used by theDaniel Stenberg
ordinary test suite. Also removed the perror() calls and instead made the logging output the errno code to ease error tracking using logs.
2006-04-10output the exit code from stunnel to stderr in case it is non-zeroDaniel Stenberg
2006-04-10support --fork and pass that on to swsDaniel Stenberg
2006-04-10Scan for 'stunnel4' before 'stunnel' since debian have them setup this wayDaniel Stenberg
and it should break most other systems. The "funny" part is that debian actually have a 'stunnel' setup to simulate stunnel v3 but it breaks our own stunnel-version-detect-and-adjust-to-it system. Added initial support for optionally running servers with fork support.
2006-04-10Use correct content-length. Found out by patching the libcurl read to onlyDaniel Stenberg
read one byte at a time...
2006-04-1033. Doing multi-pass HTTP authentication on a non-default port does not work.Daniel Stenberg
This happens because the multi-pass code abuses the redirect following code for doing multiple requests, and when we following redirects to an absolute URL we must use the newly specified port and not the one specified in the original URL. A proper fix to this would need to separate the negotiation "redirect" from an actual redirect.
2006-04-1065 - curl_multi_socket() added but not extensively tested nor particularlyDaniel Stenberg
documented or pushed for.
2006-04-10we haven't been using yacc/bison in a long time!Daniel Stenberg
2006-04-10forked off the changes from 2005 into its own fileDaniel Stenberg
2006-04-09CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!Daniel Stenberg
2006-04-09mention RFC 2396 for URL syntax specDaniel Stenberg
2006-04-09new little example using the new conversion callbacks added in 7.15.4Daniel Stenberg
2006-04-08mention the outlength argumentDaniel Stenberg
2006-04-08readint_le() not needed in USE_WINDOWS_SSPI code.Gisle Vanem
2006-04-08curl_easy_unescape() takes 4 arguments.Gisle Vanem
2006-04-07First commit of David McCreedy's EBCDIC and TPF changes.Daniel Stenberg
2006-04-07minor re-arrange to return a value in order to avoid compiler warningsDaniel Stenberg
for not returning a value from a non-void function (even though the code never actually reached that point before)
2006-04-07added typedefed function pointers and typecast the NULL assignments in anDaniel Stenberg
attempt to silence picky compilers when assigning data pointers to a function pointer variable