aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-22keywords addedDaniel Stenberg
2005-04-22Dave Dribin: set CURL_STATICLIB when it builds static library variants.Daniel Stenberg
2005-04-22Andres Garcia's fix for building static curl on windows.Daniel Stenberg
2005-04-22Fixed the CN extractionDaniel Stenberg
2005-04-22update the copyright yearDaniel Stenberg
2005-04-22modified this yearDaniel Stenberg
2005-04-22ignore the memdump file when showing files after a failureDaniel Stenberg
2005-04-22copyright this yearDaniel Stenberg
2005-04-22Fixed for Mac OS X builds based on excellent feedback from Heinz Stockinger.Daniel Stenberg
2005-04-22changes for building with IPV6.Gunter Knauf
2005-04-22modified the test case success reporting, added "test N out of Y" andDaniel Stenberg
"remaining: [time]" outputs to hint users about what to expect
2005-04-22test 256 is like test 38 but with proxy + proxy authDaniel Stenberg
2005-04-22keywordsDaniel Stenberg
2005-04-22Set the retry delay variables after the option parsing, as bug reportDaniel Stenberg
#1187787 points out.
2005-04-21added missing headersDaniel Stenberg
2005-04-20changes for building with IPV6 and LDAP.Gunter Knauf
2005-04-19prevent compiler warningDaniel Stenberg
2005-04-19added typecast when converting from long to unsigned short, to prevent ↵Daniel Stenberg
compiler warning
2005-04-19indented source to look more like other ares code,Daniel Stenberg
added (somewhat ugly) typecasts to build warning-free on 64bit platforms (the result of a (char *) - (char *) cannot be stored in an int universally)
2005-04-19sortlist_alloc() is never used on win32, so ifdef out it to prevent warningDaniel Stenberg
2005-04-19only define _REENTRANT if not already defined, and only in setup.hDaniel Stenberg
2005-04-19Check for and config for the ca cert bundle properly when built with GnuTLS.Daniel Stenberg
Previously this was only done for OpenSSL builds.
2005-04-19when --with-gnutls is used, we assume a bin/libgnutls-config file in theDaniel Stenberg
given prefix. Building something with gnutls without it just is too error- prone.
2005-04-19remove the warning for a lacking crypto lib since it migth just be a gnutlsDaniel Stenberg
build...
2005-04-19added CURLOPT_PORT test when using proxyDaniel Stenberg
2005-04-18two bugfixes of todayDaniel Stenberg
2005-04-18Olivier reported that even though he used CURLOPT_PORT, libcurl clearly stillDaniel Stenberg
used the default port. He was right. I fixed the problem and added the test cases 521, 522 and 523 to verify the fix.
2005-04-18Toshiyuki Maezawa reported that when doing a POST with a read callback,Daniel Stenberg
libcurl didn't properly send an Expect: 100-continue header. It does now.
2005-04-18digest works in the proxyauth tooDaniel Stenberg
2005-04-18Initial curl_multi_socket() stuff, #ifdef'ed out for now but committed forDaniel Stenberg
documentational purposes.
2005-04-18better fix for the socket -1 caseDaniel Stenberg
2005-04-18ignore sockfiltDaniel Stenberg
2005-04-18safety measure to avoid using -1 as socketDaniel Stenberg
2005-04-18allow some more timeDaniel Stenberg
2005-04-18ARGH my stupidity is endless. Ipv4-only hosts don't send EPRT or LPRT.Daniel Stenberg
2005-04-18Modified the FTP server to use the new 'sockfilt' program to do all the socketDaniel Stenberg
level stuff. The FTP server communicates with sockfilt using perl's open2(). This enables easier IPv6 support and hopefully FTP-SSL support in the future. Added four test cases for FTP-ipv6.
2005-04-18Modified to not mix ordinary print to STDOUT with a system() that prints toDaniel Stenberg
stdout, since I've found cases on Solaris where the second output mixes with the first and thus the big check-script doesn't properly find the first string in the output stream.
2005-04-17somewhat clarified that this only sets the fd_sets and expects them to beDaniel Stenberg
cleared before this function is called
2005-04-16keywords addedDaniel Stenberg
2005-04-16minor edits, report the test cases without keywordsDaniel Stenberg
2005-04-16starting to produce a summary in HTMLDaniel Stenberg
2005-04-16avoid warning on windowsDaniel Stenberg
2005-04-16clarify that > in the verbose output can contain newlinesDaniel Stenberg
2005-04-16keywords addedDaniel Stenberg
2005-04-15initial tool to report info/keywords of the test casesDaniel Stenberg
2005-04-15started adding "keywords" for each test, to better allow us to sum up whatDaniel Stenberg
kind of tests we have and how many tests that test certain features
2005-04-15add needed includeDaniel Stenberg
2005-04-15Attempted to fix c-ares not building on non-IPv6 systemsDominick Meglio
2005-04-15if libgnutls-config isn't found in the given path, deal with it nicer (butDaniel Stenberg
it is still likely to not do very good since it can't figure out all the lib dependencies)
2005-04-14Two new slowdown tests for better testing of the FTP response reader functionDaniel Stenberg
when the response come in many small chunks.