a38520c9 | 19-Jan-2005 |
Daniel Stenberg |
added test226 too |
3050ae57 | 19-Jan-2005 |
Daniel Stenberg |
Stephan Bergmann made libcurl return CURLE_URL_MALFORMAT if an FTP URL contains %0a or %0d in the user, password or CWD parts. (A future fix would include doing it for %00 as well - see KNOWN
Stephan Bergmann made libcurl return CURLE_URL_MALFORMAT if an FTP URL contains %0a or %0d in the user, password or CWD parts. (A future fix would include doing it for %00 as well - see KNOWN_BUGS for details.) Test case 225 and 226 were added to verify this
show more ...
|
01205f77 | 19-Jan-2005 |
Daniel Stenberg |
today's proxy fixes |
06ad5be3 | 19-Jan-2005 |
Gisle Vanem |
Don't copy 'stderr' for Win-CE in IPv6 code. Don't call GetCurrentProcess() twice; use a local variable. |
2fe3829e | 19-Jan-2005 |
Daniel Stenberg |
add a URL to an article about making Apache support PUT |
a0c8b9bc | 19-Jan-2005 |
Daniel Stenberg |
Stephan Bergmann pointed out two flaws in libcurl built with HTTP disabled: 1) the proxy environment variables are still read and used to set HTTP proxy 2) you couldn't disable http
Stephan Bergmann pointed out two flaws in libcurl built with HTTP disabled: 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)
show more ...
|
0406b1fa | 18-Jan-2005 |
Daniel Stenberg |
skip sys/socket.h on windows CE |
65dbee01 | 18-Jan-2005 |
Daniel Stenberg |
check for errno.h |
b1080f7c | 18-Jan-2005 |
Daniel Stenberg |
Cody Jones' enhanced version of Samuel D�az Garc�a's MSVC makefile patch. |
7bfd58d4 | 17-Jan-2005 |
Daniel Stenberg |
Add support for server 'ftp2' which is a second FTP server. Useful for 3rd party transfer tests or tests that need two FTP servers. |
3851c6aa | 17-Jan-2005 |
Daniel Stenberg |
support the new --id command line option, that allows a second (or third or whatever) instance to run without overwriting the previous' logfiles |
ae03fa7d | 17-Jan-2005 |
Daniel Stenberg |
mention the name-prefix protocol guess thing |
8a14dd25 | 17-Jan-2005 |
Daniel Stenberg |
updated the wording for -B/--use-ascii |
e0bea7d5 | 16-Jan-2005 |
Daniel Stenberg |
Alex aka WindEagle pointed out that when doing "curl -v dictionary.com", curl assumed this used the DICT protocol. While guessing protocols will remain fuzzy, I've now made sure that the host
Alex aka WindEagle pointed out that when doing "curl -v dictionary.com", curl 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.
show more ...
|
534a8a05 | 16-Jan-2005 |
Daniel Stenberg |
mention --netrc in the -u description |
f5b8a26d | 15-Jan-2005 |
Gisle Vanem |
errrno can by freak accident become EINTR on DOS or Windows (unrelated to select). select() can never set errno to EINTR on Windows. |
cf51f7fb | 15-Jan-2005 |
Daniel Stenberg |
output better error detection, like when ipv6 can't resolve |
4d1f3d3c | 14-Jan-2005 |
Daniel Stenberg |
Added README.hostip |
f70b87b4 | 14-Jan-2005 |
Daniel Stenberg |
verify the protocol too |
0e263553 | 13-Jan-2005 |
Daniel Stenberg |
Inspired by Martijn Koster's patch and example source at 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
Inspired by Martijn Koster's patch and example source at 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: ----------------------------------------------------------------------
show more ...
|
246ea56e | 12-Jan-2005 |
Gisle Vanem |
Added dependencies. |
7c1bba31 | 12-Jan-2005 |
Gisle Vanem |
Added '-bd' option; target is a DLL. Added dependencies. |
9395cad3 | 11-Jan-2005 |
Daniel Stenberg |
support for retrieving used IP addresses |
c5b2e85b | 11-Jan-2005 |
Daniel Stenberg |
Dan Torop cleaned up a few no longer used variables from David Phillips' select() overhaul fix. |
38f80872 | 11-Jan-2005 |
Gisle Vanem |
Removed CURLTOOLDEBUG. It caused libcurl_wc.dll to fail in mysterious ways. |