aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-28AF_INET6 for ipv6 addresses!Daniel Stenberg
2005-04-28no, the kill servers messages need to be verbose, they're too frequentDaniel Stenberg
2005-04-28display killed pids to make it easier to see for autobuilds etcDaniel Stenberg
2005-04-28historic thing we will not useDaniel Stenberg
2005-04-28removed ftpsserver.plDaniel Stenberg
2005-04-28When staring a HTTP server, use the pidfile preferably since it turns outDaniel Stenberg
sometimes the server can start but curl cannot speak to it, and then we must remember the server (in order to kill it properly) anyway. Also, make sure to kill all servers on exit everywhere.
2005-04-28ignore more generated filesDaniel Stenberg
2005-04-28remove unused ftps-server code and fixed two warningsDaniel Stenberg
2005-04-28if diff -u makes zero output, try diff -c insteadDaniel Stenberg
2005-04-28kill slave processes when they failDaniel Stenberg
2005-04-281. no longer ask the server for the HTTPS pid, as it returns the HTTP pidDaniel Stenberg
(problem identified by Dan F) 2. initial text mode fix for file checks, to allow better text file testing on windows (with regard to line endings) 3. fixed to use the proper ftpserver pidfile to find pid
2005-04-27Paul Moore made curl check for the .curlrc file (_curlrc on windows) on twoDaniel Stenberg
more places. First, CURL_HOME is a new environment variable that is used instead of HOME if it is set, to point out where the default config file lives. If there's no config file in the dir pointed out by one of the environment variables, the Windows version will instead check the same directory the executable curl is located in.
2005-04-27listen(..., 1) as 0 doesn't work on Tru64!Daniel Stenberg
2005-04-27display listening port in logDaniel Stenberg
2005-04-27show what error codes we test for too, and show 10 test case numbersDaniel Stenberg
2005-04-27keyword updateDaniel Stenberg
2005-04-27detect SSL library properly and display it on startupDaniel Stenberg
2005-04-26fixingDaniel Stenberg
2005-04-26Cory Nelson's work on nuking compiler warnings when building on x64 withDaniel Stenberg
VS2005.
2005-04-26Since Windows doesn't have/use the POSIX prototype for send() and recv(), weDaniel Stenberg
typecast the third argument in the macros to avoid compiler warnings.
2005-04-26adding a bunch of comments for each #endifDaniel Stenberg
2005-04-25Fred New reported a bug where we used Basic auth and user name and password inDaniel Stenberg
.netrc, and when following a Location: the subsequent requests didn't properly use the auth as found in the netrc file. Added test case 257 to verify my fix.
2005-04-25be specific about what max_fd contains after a callDaniel Stenberg
2005-04-24Based on feedback from Cory Nelson, I added some preprocessor magic inDaniel Stenberg
*/setup.h and */config-win32.h to build fine with VS2005 on x64.
2005-04-232 days, 4 fixesDaniel Stenberg
2005-04-23Alex Suykov's ftp upload show progress meter patch, slightly adjusted.Daniel Stenberg
2005-04-23fix for recent changes.Gunter Knauf
2005-04-22show up to 5 (random) test cases using the keywordDaniel Stenberg
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.