aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-03-30first attempt to support stale=trueDaniel Stenberg
2004-03-30Added CURL_CHECK_NI_WITHSCOPEID that checks if NI_WITHSCOPEID exists andDaniel Stenberg
works. No code actually uses the HAVE_NI_WITHSCOPEID (that a positive test results in), but this is still only for testing purposes.
2004-03-30Dominick Meglio's new ares_expand_string() functionDaniel Stenberg
2004-03-30when checking the automake version, cut off trailing "-p[whatever]" from theDaniel Stenberg
version string before doing the version number checks.
2004-03-30if 0'ed out a code section that uses __FUNCTION__ etc, used for debuggingDaniel Stenberg
the new "fail with auth" code
2004-03-30init the dns pointer to NULL for clarityDaniel Stenberg
2004-03-30added more comments for what the functions returnDaniel Stenberg
2004-03-30mention the fact that you can append a new CA cert to the existing bundle tooDaniel Stenberg
2004-03-30David Byron's patch was appplied to make CURLOPT_FAILONERROR work nicelyDaniel Stenberg
even with authentcations such as NTLM or Digest enabled. Test cases 150, 151 and 152 were added to verify the functionality.
2004-03-30David Byron's new test cases for the --fail and auth stuff.Daniel Stenberg
2004-03-30David Byron made CURLOPT_FAILONERROR work with authentications such as NTLMDaniel Stenberg
or Digest.
2004-03-30'authdone' was added to the sessionhandle and thus was removed from theDaniel Stenberg
argument to the NTLM function(s)
2004-03-30David Byron added 'authdone' to the SessionHandle.Daniel Stenberg
2004-03-29these are now in the packages/vms dirDaniel Stenberg
2004-03-29The select() timeout is better not static since some implementation actuallyDaniel Stenberg
might change it. I don't *think* it does it when the timeout is 0,0 but it is better to be sure...
2004-03-29issue 24 is fixed by making sure the time fields use a static widthDaniel Stenberg
2004-03-29several noticable recent changesDaniel Stenberg
2004-03-29changes changes changesDaniel Stenberg
2004-03-29All test targets now run 'make all' before they prcoeed with the actualDaniel Stenberg
testing so that all test files are build first properly. David Byron reported.
2004-03-29Gisle Vanem's djgpp/MS-DOS updatesDaniel Stenberg
2004-03-29fix to figure out the "real" windows path when built and run with mingwDaniel Stenberg
Andrés García helped out!
2004-03-29re-indented to use curl-standard source formattingDaniel Stenberg
2004-03-29netinet/tcp.h may require netinet/in.h to be include beforeDaniel Stenberg
2004-03-28use the correct structDaniel Stenberg
2004-03-27Tor fixed a left-over from the ip argument to setnodelayDaniel Stenberg
2004-03-26Gisle Vanem:Daniel Stenberg
A patch to bypass MS' sillyness with regard to IPv6 and getaddrinfo(). The CURLDEBUG part is to avoid redefinition warning caused by memdebug.h. If ENABLE_IPV6 isn't enabled, it doesn't matter since we never call getaddrinfo(). Allthough we could to support weird protocols like SOCK_RDM that Win-2K/XP has.
2004-03-26some more password blurbDaniel Stenberg
2004-03-26check for netinet/tcp.h precense before actually including itDaniel Stenberg
2004-03-26removed the ip number from the notcpdelay functionDaniel Stenberg
2004-03-25get the version number from the new curlver.h header fileDaniel Stenberg
2004-03-25localtime and gmtime are not thread-safe on newer AIXes either so we forceDaniel Stenberg
a check for there *_r-versions too
2004-03-25force recent AIX versions to check for strerror_rDaniel Stenberg
2004-03-25only output one line about the nodelay even if it failsDaniel Stenberg
2004-03-25win32 doesn't need and even doesn't build if we extern declare sys_nerrDaniel Stenberg
2004-03-25include the strerror.h file without curl_ prefixDaniel Stenberg
2004-03-25strerror without prefixDaniel Stenberg
2004-03-25cut off 'curl_' from the strerror file namesDaniel Stenberg
2004-03-25tcp-nodelay patch by Joe HalpinDaniel Stenberg
2004-03-25so there are at least two different strerror_r() versions and our brandDaniel Stenberg
new configure script detects them and now this code acts according to what API that was detected
2004-03-25Tor Arntsen fixed how this is invokedDaniel Stenberg
2004-03-25strerror_r() detection changes:Daniel Stenberg
1. Try with _THREAD_SAFE instead of _REENTRANT, as AIX seems to require it and if _REENTRANT is required we should already have it set since one of the previous tests. 2. Added API-detection for what kind of strerror_r() that is provided. The POSIX style or the glibc style. Tor Arntsen provided the necessary feedback these changes are based upon.
2004-03-25detect daily snapshots using the new path for this testDaniel Stenberg
2004-03-25make clean now removes *dist files too that might be leftovers fromDaniel Stenberg
'maketgz'
2004-03-25invoke this script via env, as it is more likely to exist at a fixed pathDaniel Stenberg
while perl often is installed in /usr/local/bin or elsewhere
2004-03-25added curl_strerror to the buildDaniel Stenberg
2004-03-25extern declare the sys_nerr variable. Required on Solaris at least.Daniel Stenberg
2004-03-25Always include setup.h as the first header file.Daniel Stenberg
Added a more verbose comment about what strerror_r() can set errno to in case of failure. This file still doesn't build on Solaris due to a missing 'sys_nerr' symbol.
2004-03-24Added protos for the upcoming curl_*_strerror() functionsDaniel Stenberg
2004-03-24missed the new header fileDaniel Stenberg
2004-03-24Gisle Vanem's fix to replace the bad use of strerror(). This introducesDaniel Stenberg
Curl_strerror() that attempts to be thread-safe _and_ works on Windows too!