Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-01-19 | add a URL to an article about making Apache support PUT | Daniel Stenberg | |
2005-01-19 | Stephan Bergmann pointed out two flaws in libcurl built with HTTP disabled: | Daniel Stenberg | |
1) the proxy environment variables are still read and used to set HTTP proxy 2) you couldn't disable http proxy with CURLOPT_PROXY (since the option was disabled) | |||
2005-01-18 | skip sys/socket.h on windows CE | Daniel Stenberg | |
2005-01-18 | check for errno.h | Daniel Stenberg | |
2005-01-18 | Cody Jones' enhanced version of Samuel Díaz García's MSVC makefile patch. | Daniel Stenberg | |
2005-01-17 | Add support for server 'ftp2' which is a second FTP server. Useful for 3rd | Daniel Stenberg | |
party transfer tests or tests that need two FTP servers. | |||
2005-01-17 | support the new --id command line option, that allows a second (or third or | Daniel Stenberg | |
whatever) instance to run without overwriting the previous' logfiles | |||
2005-01-17 | mention the name-prefix protocol guess thing | Daniel Stenberg | |
2005-01-17 | updated the wording for -B/--use-ascii | Daniel Stenberg | |
2005-01-16 | Alex aka WindEagle pointed out that when doing "curl -v dictionary.com", curl | Daniel Stenberg | |
assumed this used the DICT protocol. While guessing protocols will remain fuzzy, I've now made sure that the host names must start with "[protocol]." for them to be a valid guessable name. I also removed "https" as a prefix that indicates HTTPS, since we hardly ever see any host names using that. | |||
2005-01-16 | mention --netrc in the -u description | Daniel Stenberg | |
2005-01-15 | errrno can by freak accident become EINTR on DOS or | Gisle Vanem | |
Windows (unrelated to select). select() can never set errno to EINTR on Windows. | |||
2005-01-15 | output better error detection, like when ipv6 can't resolve | Daniel Stenberg | |
2005-01-14 | Added README.hostip | Daniel Stenberg | |
2005-01-14 | verify the protocol too | Daniel Stenberg | |
2005-01-13 | Inspired by Martijn Koster's patch and example source at | Daniel Stenberg | |
http://www.greenhills.co.uk/mak/gentoo/curl-eintr-bug.c, I now made the select() and poll() calls properly loop if they return -1 and errno is EINTR. glibc docs for this is found here: http://www.gnu.org/software/libc/manual/html_node/Interrupted-Primitives.html This last link says BSD doesn't have this "effect". Will there be a problem if we do this unconditionally? S: ---------------------------------------------------------------------- | |||
2005-01-12 | Added dependencies. | Gisle Vanem | |
2005-01-12 | Added '-bd' option; target is a DLL. | Gisle Vanem | |
Added dependencies. | |||
2005-01-11 | support for retrieving used IP addresses | Daniel Stenberg | |
2005-01-11 | Dan Torop cleaned up a few no longer used variables from David Phillips' | Daniel Stenberg | |
select() overhaul fix. | |||
2005-01-11 | Removed CURLTOOLDEBUG. It caused libcurl_wc.dll | Gisle Vanem | |
to fail in mysterious ways. | |||
2005-01-11 | Renamed easy.h and multi.h to easyif.h and multiif.h to make sure they don't | Daniel Stenberg | |
shadow our public headers with the former names. | |||
2005-01-11 | ".\lib\easy.h" shadows for <curl/easy.h> in Watcom. | Gisle Vanem | |
Force including ../include/curl/easy.h. | |||
2005-01-11 | Fix '!if' expression. | Gisle Vanem | |
2005-01-11 | ".\lib\multi.h" shadows for <curl/multi.h> in Watcom. | Gisle Vanem | |
Force including ../include/curl/multi.h. | |||
2005-01-11 | Cyrill Osterwalder posted a detailed analysis about a bug that occurs when | Daniel Stenberg | |
using a custom Host: header and curl fails to send a request on a re-used persistent connection and thus creates a new connection and resends it. It then sent two Host: headers. Cyrill's analysis was posted here: http://curl.haxx.se/mail/archive-2005-01/0022.html | |||
2005-01-10 | Bruce Mitchener identified (bug report #1099640) the never-ending SOCKS5 | Daniel Stenberg | |
problem with the version byte and the check for bad versions. Bruce has lots of clues on this, and based on his suggestion I've now removed the check of that byte since it seems to be able to contain 1 or 5. | |||
2005-01-10 | Use Curl_easy_addmulti() to clear associations from easy handles to multi | Daniel Stenberg | |
handles. Include multi.h to get proto. | |||
2005-01-10 | edited wording | Daniel Stenberg | |
2005-01-10 | Pavel Orehov reported memory problems with the multi interface in bug report | Daniel Stenberg | |
#1098843. In short, a shared DNS cache was setup for a multi handle and when the shared cache was deleted before the individual easy handles, the latter cleanups caused read/writes to already freed memory. | |||
2005-01-10 | Hzhijun reported a memory leak in the SSL certificate code, that leaked the | Daniel Stenberg | |
remote certificate name when it didn't match the used host name. | |||
2005-01-08 | Note about the static lib requirement; -DCURL_STATICLIB. | Gisle Vanem | |
2005-01-08 | Watcom additions. | Gisle Vanem | |
2005-01-08 | Added Watcom targets. | Gisle Vanem | |
2005-01-08 | New file. | Gisle Vanem | |
2005-01-08 | Added Makefile.Watcom to EXTRA_DIST. | Gisle Vanem | |
2005-01-07 | three recent bug fixes | Daniel Stenberg | |
2005-01-07 | disable the valgrind log checking | Daniel Stenberg | |
2005-01-07 | fixed the valgrind log check and make it possible to disable it for a specific | Daniel Stenberg | |
test, see test 509 | |||
2005-01-07 | added test 199 | Daniel Stenberg | |
2005-01-06 | prevent a single byte read outside the string in test case 39 | Daniel Stenberg | |
2005-01-06 | fixed #1097019, multiple GET posts (-G) error | Daniel Stenberg | |
2005-01-05 | recent events | Daniel Stenberg | |
2005-01-04 | Changed curl.dll to libcurl.dll. | Gisle Vanem | |
2005-01-04 | Minor comment fix. | Gisle Vanem | |
2005-01-04 | just narrowed some text to fit within 80 cols | Daniel Stenberg | |
2005-01-04 | Removed _WIN32_WINNT to support IPv6 under Win-2K. | Gisle Vanem | |
2005-01-03 | Marty Kuhrt's VMS update | Daniel Stenberg | |
2005-01-02 | reverted the bad naming of the implib names | Daniel Stenberg | |
2005-01-02 | Alex Neblett's minor update | Daniel Stenberg | |