d8dcd5e4 | 23-Jun-2005 |
Daniel Stenberg |
added docs about the new proxy string support |
c51b46c9 | 22-Jun-2005 |
Daniel Stenberg |
David Shaw fixes |
b1b63c1d | 22-Jun-2005 |
Daniel Stenberg |
mention more ARMs |
30c93d66 | 22-Jun-2005 |
Daniel Stenberg |
verify that the URL decoding is done properly too |
3b60bb72 | 22-Jun-2005 |
Daniel Stenberg |
David Shaw's fix that unifies proxy string treatment so that a proxy given with CURLOPT_PROXY can use a http:// prefix and user + password. The user and password fields are now also URL decod
David Shaw's fix that unifies proxy string treatment so that a proxy given with CURLOPT_PROXY can use a http:// prefix and user + password. The user and password fields are now also URL decoded properly. Test case 264 added to verify.
show more ...
|
c73f8e83 | 22-Jun-2005 |
Daniel Stenberg |
David Shaw's updated version: It now properly handles code that uses curl_free() (since not all versions of curl have it), and also fixes a few problems when detecting libcurl on MinGW,
David Shaw's updated version: It now properly handles code that uses curl_free() (since not all versions of curl have it), and also fixes a few problems when detecting libcurl on MinGW, and a linker problem on OSX Panther.
show more ...
|
93558c42 | 20-Jun-2005 |
Daniel Stenberg |
mistake |
396cff57 | 19-Jun-2005 |
Daniel Stenberg |
possible windows memory leak fixed by Gisle |
336154e7 | 19-Jun-2005 |
Dominick Meglio |
Added some checks for the addrinfo structure. |
bb0aba34 | 14-Jun-2005 |
Gisle Vanem |
Ensure thread handle is closed too. |
1dc0ce95 | 13-Jun-2005 |
Daniel Stenberg |
4.13 Why is curl -R on Windows one hour off? |
e4aee168 | 13-Jun-2005 |
Daniel Stenberg |
recent buildconf fiddling |
2c10c895 | 13-Jun-2005 |
Daniel Stenberg |
run libtoolize in the ares dir as well, and modified the output slightly for all tools run in the ares dir - now shown like "running ares/[tool]" |
c04fae30 | 11-Jun-2005 |
Daniel Stenberg |
CURLINFO_FILETIME returns the time for GMT |
a214af08 | 09-Jun-2005 |
Daniel Stenberg |
make sure the found tool is a regular file (and not a dir or something) |
f21bc46e | 09-Jun-2005 |
Daniel Stenberg |
Modified to use 'head -n 1' instead of 'head -1' since some versions of head complains and claims this is deprecated. |
044327a4 | 07-Jun-2005 |
Daniel Stenberg |
Reverted Tupone Alfredo's patch, as it broke NUMEROUS autobuilds. Let's do the changes in a slower and more controlled manner... |
c4bbcc83 | 06-Jun-2005 |
Daniel Stenberg |
Tupone Alfredo's fixes: 1) findtool does look per tool in PATH and think ./perl is the perl executable, while is just a local directory (I have . in the PATH) 2) I got several w
Tupone Alfredo's fixes: 1) findtool does look per tool in PATH and think ./perl is the perl executable, while is just a local directory (I have . in the PATH) 2) I got several warning for head -1 deprecated in favour of head -n 1 3) ares directory is missing some file (missing is missing :-) ) because automake and friends is not run. (Let's hope number 2 doesn't break somewhere "out there", if so we can always search/replace that back.)
show more ...
|
eb162b73 | 03-Jun-2005 |
Daniel Stenberg |
first rough version |
29aafb9c | 03-Jun-2005 |
Daniel Stenberg |
Andres Garcia's text mode fix for the 'data' part |
40eb7d0d | 03-Jun-2005 |
Daniel Stenberg |
FIONBIO is in sys/ioctl.h on AIX |
1dcb2b7e | 02-Jun-2005 |
Daniel Stenberg |
sigh, define TRUE if not already |
5470b9aa | 02-Jun-2005 |
Daniel Stenberg |
William Ahern: Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will sti
William Ahern: Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a read event can come back from poll() on a valid SOCK_DGRAM socket but recv(2) will still block. This patch doesn't ignore EAGAIN in read_udp_packets(), though maybe it should. (This patch was edited by Daniel Stenberg and a new configure test was added (imported from curl's configure) to properly detect what non-blocking socket approach to use.)
show more ...
|
050bd7dd | 02-Jun-2005 |
Daniel Stenberg |
William Ahern: I'm not quite sure how this was happening, but I've been seeing PTR queries which seem to return empty responses. At least, they were empty when calling ares_exp
William Ahern: I'm not quite sure how this was happening, but I've been seeing PTR queries which seem to return empty responses. At least, they were empty when calling ares_expand_name() on the record. Here's a patch which guarantees to NUL-terminate the expanded name. The old behavior failed to NUL-terminate if len was 0, and this was causing strlen() to run past the end of the buffer after calling ares_expand_name() and getting ARES_SUCCESS as the return value. If q is not greater than *s then it's equal and *s is always allocated with at least one byte.
show more ...
|
f7503863 | 01-Jun-2005 |
Daniel Stenberg |
specify the cares lib before the other libs, to make it build fine with mingw - inspired by Tupone Alfredo's bug report (and patch) #1212940 |