aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-02-18No longer uses the 'ret' variable in the plain ipv4-version ofDaniel Stenberg
my_getaddrinfo() (caused a warning by the IRIX MIPSPro compiler). Also clarified the situation for the 3-arg version of gethostbyname_r() with a huge comment.
2004-02-18The --enable-debug option really requires this to be built as part of curl.Daniel Stenberg
When using it, we now set the include path to better find the devel curl headers, and we check for the socklen_t type since the curl memdebug stuff needs it.
2004-02-18simplified and better commented config.h include logicDaniel Stenberg
2004-02-18Make sure dns cache timeout -1 really means forever, as it is documented toDaniel Stenberg
be. Simply skip the pruning.
2004-02-17fix the help text for --manual if built without manualDaniel Stenberg
2004-02-17ignore moreDaniel Stenberg
2004-02-17memdebug build, 'make' no longer builds the demo toolsDaniel Stenberg
2004-02-17'make all' also builds the demosDaniel Stenberg
2004-02-17include ares_private.h to make sure we get the memdebug stuff includedDaniel Stenberg
2004-02-17If CURLDEBUG is set we use the libcurl internal memdebug system to trackDaniel Stenberg
memory leaks etc.
2004-02-16only build adig and ahost if 'make demos' is usedDaniel Stenberg
2004-02-16support closesocket() for closing sockets as well, as then we can use thisDaniel Stenberg
code fine on ares!
2004-02-16Make realloc() support NULL as pointer. Made to allow us to use these routinesDaniel Stenberg
to memdebug the ares stuff as well.
2004-02-16item 24 fixed, edited a few issuesDaniel Stenberg
2004-02-16Make the 'areschannel' get created in the curl_easy_init() and re-use thatDaniel Stenberg
same channel during the whole curl handle's life until curl_easy_cleanup().
2004-02-16updatesDaniel Stenberg
2004-02-16verbose-fix, socks5-fix, dnscache-fix, configure-winmmlib-fixDaniel Stenberg
2004-02-16Fix verbosconnect() when ipv6-enabled to not assume that conn->serv_addrDaniel Stenberg
is a valid pointer, but instead always depend on the passed-in dns pointer. This happens to be NULL when the connection is re-used...
2004-02-16removed usage of a silly macro instead of the actual functions memcpyDaniel Stenberg
and memset
2004-02-16Jeff Lawson pointed out that we need to check for a '5' in the version fieldDaniel Stenberg
to properly work with SOCKS5 proxies. I also included some ascii art describing the SOCKS5 response, as RFC1928 describes. Jeff provided details in bug report #741841 and here: http://curl.haxx.se/mail/lib-2004-02/0181.html
2004-02-15Andrés García added a check for lwinmm for Mingw/sysDaniel Stenberg
2004-02-15Mark the dns entry 'inuse' properly even when used from the cache. ThisDaniel Stenberg
seems to correct some host cache screw-ups I could reproduce.
2004-02-15another case which should use CURLcode and not intDaniel Stenberg
2004-02-15Use the was_iface variable when binding a socket locally, even if noDaniel Stenberg
SO_BINDTODEVICE is present, to prevent compiler warnings about the variable
2004-02-15bind interface and large file fixesDaniel Stenberg
2004-02-15recent fixesDaniel Stenberg
2004-02-15(void) functions we don't check the return code forDaniel Stenberg
2004-02-15CURLcode/int cleanup to reduce IRIX warningsDaniel Stenberg
Removed some dates/names in the comments.
2004-02-15spell!Daniel Stenberg
2004-02-15don't assume we can use gcc 2.96+ optionsDaniel Stenberg
2004-02-13in the socks code, make sure we receive Curl_read results in ints andDaniel Stenberg
Curl_write in CURLcode, to keep the picky compilers happy
2004-02-13removed usage of unset variables (by a function that does nothing!)Daniel Stenberg
2004-02-13return an intDaniel Stenberg
2004-02-13return an int, not a CURLcodeDaniel Stenberg
2004-02-13use CURLcode, not int, prevents picky compilers to warnDaniel Stenberg
2004-02-13the now and start variables were never really usedDaniel Stenberg
2004-02-13Ben Greear's SO_BINDTODEVICE patch that binds to a network interface "evenDaniel Stenberg
more" when the previous approach. Known to work on Linux, possibly on other platforms as well.
2004-02-13Tor Arntsen made the ares build warnings etc get included as wellDaniel Stenberg
2004-02-13Greg Hewgill found out 'contentlength' wasn't big enough to hold a large file!Daniel Stenberg
2004-02-13make the path constDaniel Stenberg
2004-02-13I made the same fix here, that Tor already did in the ftp.c code. To makeDaniel Stenberg
sure this doesn't get weird on 64bit archs.
2004-02-13Tor Arntsen's fix for the bad (64bit wise) typecast when using gmtime()Daniel Stenberg
2004-02-12Make hostcache_fixoffset() take a long for offset, to fully work with 64bitDaniel Stenberg
archs, also no longer typecast pointers to ints as that is a nono on 64bit systems.
2004-02-12up to date with recent fixesDaniel Stenberg
2004-02-12If no nroff tool is found, or if no command line switch to nroff that convertsDaniel Stenberg
a man page to text is found, we disable the built-in manual stuff to still be able to build.
2004-02-12support configure --disable-manualDaniel Stenberg
2004-02-12added --enable/disable-manualDaniel Stenberg
2004-02-12no need to run make test in the data dir anymoreDaniel Stenberg
2004-02-12provide a source path to the servers to make them find the tests when runDaniel Stenberg
outside the source dir, not needing any symlinks
2004-02-12stop doing the weirdo symlinksDaniel Stenberg