aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2004-02-12removed the subchar variable, it was only set and never usedDaniel Stenberg
2004-02-12removed the ldaptext variable, it was only set and never usedDaniel Stenberg
2004-02-12removed the nth variable, it was only set and never used anywayDaniel Stenberg
2004-02-12No longer receive the return code in ConnectionKillOne() that wasn't dealtDaniel Stenberg
with anyway and thus caused picky compiler to warn.
2004-02-11Andrés García's additional fix to make the OpenSSL stuff work for msys/mingwDaniel Stenberg
2004-02-11#if-check for SIGALRM before assuming it is presentDaniel Stenberg
2004-02-11use libtoolize --force to overwrite existing (older) filesDaniel Stenberg
2004-02-11install ares_version.h as wellDaniel Stenberg
2004-02-11Dirk Manske's fix to install ares_version.h as wellDaniel Stenberg
2004-02-09mondays are busy days catching up with the patches from the weekend! ;-)Daniel Stenberg
2004-02-09Dominick Meglio's updateDaniel Stenberg
2004-02-09recent updatesDaniel Stenberg
2004-02-09Modified the default HTTP Accept: header to only be Accept: */*Daniel Stenberg
2004-02-09Removed, this was only used to work out what went wrong with test 91, andDaniel Stenberg
we seem to have nailed that one now!
2004-02-09Oops. I broke the flow with the previous commit.Daniel Stenberg
2004-02-09P R Schaffner updated this to work for 7.11.0Daniel Stenberg
2004-02-09Dominick Meglio's added share interface documentationDaniel Stenberg
2004-02-09removed the state file renaming I accidentally left thereDaniel Stenberg
2004-02-09some annoying compilers warn about "(void)foo;" lines so we avoid themDaniel Stenberg
2004-02-09Make param2text() take an int argument, as that is what's being passed in.Daniel Stenberg
This is made to prevent compiler warnings.
2004-02-09use VAR_NONE instead of 0 in the table to prevent compiler warningDaniel Stenberg
2004-02-09return 'res' to better discover test failures and to stop compiler warningsDaniel Stenberg
about it never being used
2004-02-09Uninitialized variable set.Daniel Stenberg
2004-02-09Tor Arntsen's patch for working around a notorious bug in the AIX5Daniel Stenberg
getaddrinfo() implementation.
2004-02-09Ken Rastatter's fixes to improve portability of this example:Daniel Stenberg
These minor changes remove portability issues with the this example and allow it to run on Win32. Specifically: * The use of pthread_create() has been replaced by g_thread_create(). This removes the dependency on the pthreads library. Since this is an example using GTK+, g_thread_create() is available as it is a part of glibc. * The CURLOPT_FILE option is now referred to by its "newer name" CURLOPT_WRITEDATA. * The use of CURLOPT_WRITEFUNCTION has been added. As described in the docs, this avoids the crashes when using a DLL under Win32. * The output file has been renamed from "/tmp/test.curl" to "test.curl". It's unlikely that there is a /tmp when in Win32 and other examples in libcurl write their output files to the working directory.
2004-02-06mingw configure fix, host: fix, compiler warnings in ldap.cDaniel Stenberg
2004-02-06updated with recent fixesDaniel Stenberg
2004-02-06The Curl_strtoll() issueDaniel Stenberg
2004-02-06updatedDaniel Stenberg
2004-02-06Rewrote the gethostbyname() check after Andrés García's provided patchDaniel Stenberg
for finding it using mingw on windows. I also made the script skip the search for gethostbyname_r and gethostbyaddr_r when ipv6 is enabled.
2004-02-06Added documentation of a few command line options that were still undocumentedDaniel Stenberg
here.
2004-02-06A custom Host: header is only considered if the request is not made byDaniel Stenberg
following a location. After discussions with Tim Baker.
2004-02-06The MIPSPro compiler complains on constructs such as "(void)foo;" soDaniel Stenberg
we avoid it where possible.