Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-26 | Use the HAVE_MALLOC_H and HAVE_PROCESS_H defines | Gisle Vanem | |
(more logical). | |||
2006-04-26 | djgpp has <process.h> too. | Gisle Vanem | |
2006-04-26 | Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H and | Gisle Vanem | |
HAVE_PROCESS_H added for all except scc. | |||
2006-04-26 | Added SalfordC support. | Gisle Vanem | |
2006-04-26 | crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bit | Daniel Stenberg | |
systems | |||
2006-04-26 | updated with more error codes | Daniel Stenberg | |
2006-04-26 | David McCreedy brought line end conversions when doing FTP ASCII | Daniel 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 Schwarb | Daniel Stenberg | |
2006-04-25 | Paul Querna fixed libcurl to better deal with deflate content encoding when | Daniel Stenberg | |
the stream (wrongly) lacks a proper zlib header. This seems to be the case on too many actual server implementations. | |||
2006-04-25 | prevent signed/unsigned warnings | Daniel Stenberg | |
2006-04-24 | Mention my April 20 thoughts. I already changed the README in the lib dir | Daniel Stenberg | |
to be accurate on this. | |||
2006-04-24 | added the hipev build | Daniel Stenberg | |
2006-04-24 | the example that _is_ supposed to use libevent | Daniel Stenberg | |
2006-04-24 | this example does NOT use libevent! | Daniel Stenberg | |
2006-04-21 | Ale Vesely fixed CURLOPT_INTERFACE when using a hostname | Daniel Stenberg | |
2006-04-21 | each socket is used by exactly one easy handle, but of course each easy handle | Daniel Stenberg | |
can and will use more than one socket | |||
2006-04-21 | added SPL and XBLite | Daniel Stenberg | |
2006-04-20 | removed -fpack-struct because gcc4 seems to know its obsolete and warns... | Gunter Knauf | |
2006-04-19 | detect ICC and pass on "-we 147" so that the configure checks for function | Daniel Stenberg | |
arguments work properly - and the option is not harmful for the rest of the curl build either! | |||
2006-04-19 | the new conversion stuff documented (mostly by David McCreedy) | Daniel Stenberg | |
2006-04-19 | CURL_VERSION_CONV is returned by curl_version_info if libcurl has been built | Daniel Stenberg | |
to allow/support character conversions | |||
2006-04-18 | mention the recent thoughts/progress I had | Daniel Stenberg | |
2006-04-18 | Robson Braga Araujo provided a patch that makes libcurl less eager to close | Daniel Stenberg | |
the control connection when using FTP, for example when you remove an easy handle from a multi stack. | |||
2006-04-18 | mention Katie Wang as author of the patch | Daniel Stenberg | |
2006-04-18 | corrected the SSL timeout, as Ates Goral's patch did it and that works (opposed | Daniel Stenberg | |
to my previous brain-damaged version) | |||
2006-04-18 | attempt to silence the MIPSPro compiler warning | Daniel Stenberg | |
2006-04-18 | avoid a warning about declaring a variable that shadows an earlier declared | Daniel Stenberg | |
one | |||
2006-04-18 | there's an curl_easy_unescape too now | Daniel Stenberg | |
2006-04-17 | minor Makefile fix - let's go 2006; | Gunter Knauf | |
use correct version var. | |||
2006-04-17 | added missing symbol export. | Gunter Knauf | |
2006-04-12 | added splay | Daniel Stenberg | |
2006-04-12 | Added splay.c. | Gisle Vanem | |
2006-04-12 | Add "multiif.h" for GETSOCK_WRITESOCK() macro. | Gisle Vanem | |
2006-04-11 | #1468330 (http://curl.haxx.se/bug/view.cgi?id=1468330) pointed out a bad | Daniel 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-11 | adjusted to the new internal *_getsock() concept for providing info internally | Daniel Stenberg | |
about what sockets to wait for what action on | |||
2006-04-11 | added docs and removed proto | Daniel Stenberg | |
2006-04-10 | mention recent additions | Daniel Stenberg | |
2006-04-10 | adding the new man pages to the package | Daniel Stenberg | |
2006-04-10 | Ates Goral found out that if you specified both CURLOPT_CONNECTTIMEOUT and | Daniel Stenberg | |
CURLOPT_TIMEOUT, the _longer_ time would wrongly be used for the SSL connection time-out! | |||
2006-04-10 | First curl_multi_socket() commit. Should primarily be considered as an internal | Daniel Stenberg | |
code rearrange to fit the future better. | |||
2006-04-10 | This no longer needs the extra define! | Daniel Stenberg | |
2006-04-10 | added README.multi_socket | Daniel Stenberg | |
2006-04-10 | state of the multi_socket API works | Daniel Stenberg | |
2006-04-10 | check for fork() as well, so that we can build the sws http test server with | Daniel Stenberg | |
fork support for cooler tests | |||
2006-04-10 | avoid duplicate typedefs, as this type is also defined in our public headers | Daniel Stenberg | |
2006-04-10 | curl_multi_socket() updates | Daniel Stenberg | |
2006-04-10 | if configure found a fork(), sws supports --fork which is *NOT* used by the | Daniel 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-10 | output the exit code from stunnel to stderr in case it is non-zero | Daniel Stenberg | |
2006-04-10 | support --fork and pass that on to sws | Daniel Stenberg | |
2006-04-10 | Scan for 'stunnel4' before 'stunnel' since debian have them setup this way | Daniel 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. |