aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-26Fixed signed/unsigned convertion errors in Salford-C.Gisle Vanem
#ifdef around WSAEDISCON in strerror.c.
2006-04-26Use the HAVE_MALLOC_H and HAVE_PROCESS_H definesGisle Vanem
(more logical).
2006-04-26djgpp has <process.h> too.Gisle Vanem
2006-04-26Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H andGisle Vanem
HAVE_PROCESS_H added for all except scc.
2006-04-26Added SalfordC support.Gisle Vanem
2006-04-26crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bitDaniel Stenberg
systems
2006-04-26updated with more error codesDaniel Stenberg
2006-04-26David McCreedy brought line end conversions when doing FTP ASCIIDaniel Stenberg
transfers. They are done on non-windows systems and translate CRLF to LF.
2006-04-25--ftp-method was missing in the --help output, as mentioned by Manfred SchwarbDaniel Stenberg
2006-04-25Paul Querna fixed libcurl to better deal with deflate content encoding whenDaniel Stenberg
the stream (wrongly) lacks a proper zlib header. This seems to be the case on too many actual server implementations.
2006-04-25prevent signed/unsigned warningsDaniel Stenberg
2006-04-24Mention my April 20 thoughts. I already changed the README in the lib dirDaniel Stenberg
to be accurate on this.
2006-04-24added the hipev buildDaniel Stenberg
2006-04-24the example that _is_ supposed to use libeventDaniel Stenberg
2006-04-24this example does NOT use libevent!Daniel Stenberg
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