b0cd9647 | 24-Jun-2004 |
Daniel Stenberg |
oops 5 bytes makes 4 letters plus zero byte |
387ec712 | 24-Jun-2004 |
Daniel Stenberg |
fix warning |
f2a99d7d | 24-Jun-2004 |
Daniel Stenberg |
the _num_chars() function is not used, removing |
8b6b15dc | 24-Jun-2004 |
Daniel Stenberg |
to prevent compier warnings, we only declare len if we have code that uses it |
bbb72b7b | 24-Jun-2004 |
Daniel Stenberg |
Gisle: free used memory better |
785bad38 | 24-Jun-2004 |
Daniel Stenberg |
Gisle cleaned up remaining host resolve re-org issues |
cf10df6c | 24-Jun-2004 |
Daniel Stenberg |
include header for our printfs |
5b55dcbf | 24-Jun-2004 |
Daniel Stenberg |
reverted bad win32 fix |
e7dbbd16 | 24-Jun-2004 |
Gunter Knauf |
fixed the MSVC build. |
62f04579 | 24-Jun-2004 |
Daniel Stenberg |
length limit the sscanf() parsing to prevent buffer overflow |
8879b57b | 24-Jun-2004 |
Daniel Stenberg |
ah, simplified my latest change more |
e49a6fea | 24-Jun-2004 |
Daniel Stenberg |
fix for systems without gethostbyname_r() |
feb2dd28 | 24-Jun-2004 |
Daniel Stenberg |
Replaced all uses of sprintf() with the safer snprintf(). It is just a precaution to prevent mistakes to lead to buffer overflows. |
5e34f3dc | 24-Jun-2004 |
Daniel Stenberg |
made the Curl_he2ai() take the port number as an int intead, to avoid lots of typecasts all over |
0031d76f | 24-Jun-2004 |
Daniel Stenberg |
use snprintf() to be on the safe side |
00ee738f | 24-Jun-2004 |
Daniel Stenberg |
typecasts to prevent warnings |
8d0a8231 | 24-Jun-2004 |
Daniel Stenberg |
only use sockaddr_in6 on ipv6-enabled hosts |
9729df17 | 24-Jun-2004 |
Daniel Stenberg |
socks proxy support even when libcurl is built ipv6-enabled |
cdb419d6 | 24-Jun-2004 |
Daniel Stenberg |
typecast to prevent warning |
d6f9a415 | 24-Jun-2004 |
Daniel Stenberg |
use Curl_addrinfo, not 'struct addrinfo' |
1daa258b | 24-Jun-2004 |
Daniel Stenberg |
fixed problems I missed to fix from my cleanup |
560c257b | 24-Jun-2004 |
Daniel Stenberg |
prevent warning |
d7aae417 | 24-Jun-2004 |
Daniel Stenberg |
Yet another resolve code re-org |
c39858aa | 24-Jun-2004 |
Daniel Stenberg |
Source cleanups. The major one being that we now _always_ use a Curl_addrinfo linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. |
818aed35 | 23-Jun-2004 |
Daniel Stenberg |
static functions are better not Curl_ prefixed to make their static status more obvious |