aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-07-12Compile most of the example apps in docs/examples when doing a 'make check'.Dan Fandrich
2007-07-12Shmulik Regev found an (albeit rare) case where the proxy CONNECT operationDaniel Stenberg
could in fact get stuck in an endless loop.
2007-07-12start the retry delay at 10 ms, double it for every failed attempt which makesDaniel Stenberg
it 10 seconds delay after 11 attempts
2007-07-12the timeout was probably too short with max = 1 sec, so lets test with 5 sec.Gunter Knauf
2007-07-12added nwos.c so that it gets distributed with releases and tarballs.Gunter Knauf
2007-07-12added time loop to sockfilt.c in order to wait for SO_REUSEADDR;Gunter Knauf
added go_sleep() to util.c.
2007-07-11Updated to match curl.hMarty Kuhrt
2007-07-11Made CURLOPT_SSL_VERIFYHOST set to 1 acts as described in the documentation:Daniel Stenberg
fail to connect if there is no Common Name field found in the remote cert. We should deprecate the support for this set to 1 anyway soon, since the feature is pointless and most likely never really used by anyone.
2007-07-11removed now obsolete NETDB_DEFINE_CONTEXT macro calls.Gunter Knauf
2007-07-11updated makefile to compile nwos.c.Gunter Knauf
2007-07-11added NetWare-own file to provide some init functions (for now only CLIB);Gunter Knauf
added call to netware_init() in curl_global_init() to make sure it gets called before any library functions get used.
2007-07-11Added the first libcurl version to which the SSH options were added.Dan Fandrich
2007-07-11added netdb.h for NetWare CLIB since gethostname() is defined there.Gunter Knauf
2007-07-11fixed endif comment.Gunter Knauf
2007-07-11fixed endif comment.Gunter Knauf
2007-07-10Added a code coverage section using gcc and gcov.Dan Fandrich
2007-07-10Shmulik Regev:Daniel Stenberg
The tiny patch below fixes a bug (that I introduced :) which happens when negotiating authentication with a proxy (probably with web servers as well) that uses chunked transfer encoding for the 407 error pages. In this case the ''ignorebody'' flag was ignored (no pun intended).
2007-07-10Giancarlo Formicuccia reported and fixed a problem with a closed connectionDaniel Stenberg
to a proxy during CONNECT auth negotiation.
2007-07-10Force the time zone to GMT in the cookie tests in case the user isDan Fandrich
using one of the so-called 'right' time zones that take into account leap seconds, which causes the tests to fail (as reported by Daniel Black in bug report #1745964).
2007-07-10The previous commits changed the error codeJames Housley
2007-07-10* Finish moving sftp:// into a state machine so it won't block in multi modeJames Housley
* Move scp:// into a state machine so it won't block in multi mode * When available use the full directory entry from the sftp:// server
2007-07-10Fixed a curl memory leak reported by Song Ma with a modified versionDan Fandrich
of the patch he suggested. Added his test case as test289 to verify.
2007-07-10start working on 7.16.5...Daniel Stenberg
2007-07-107.16.4 prepsDaniel Stenberg
2007-07-09added better CodeWarrior detection (forgot to add with previos version).Gunter Knauf
2007-07-08added better CodeWarrior detection;Gunter Knauf
added defines for setlocale().
2007-07-08added better CodeWarrior detection;Gunter Knauf
moved autounload flag so that its used for both lib architectures.
2007-07-08added better CodeWarrior detection.Gunter Knauf
2007-07-07removed some obsolete include paths and defines.Gunter Knauf
2007-07-06Thomas J. Moore made it build with less warningsDaniel Stenberg
2007-07-06Gavrie Philipson's change, updated numbersDaniel Stenberg
2007-07-06add note about windows and dlls with CURLOPT_WRITEDATADaniel Stenberg
2007-07-06fixed NetWare CLIB implementation of getpass_r()Gunter Knauf
2007-07-05Gavrie Philipson provided a patch that will use a more specific errorJames Housley
message for an scp:// upload failure. If libssh2 has his matching patch, then the error message return by the server will be used instead of a more generic error.
2007-07-05Add -a when running torture tests now that it's supported.Dan Fandrich
2007-07-04Fix spelling error in error messageJames Housley
2007-07-04add test for gettimeofday() so that HAVE_GETTIMEOFDAY gets defined.Gunter Knauf
2007-07-04enabled ares build.Gunter Knauf
2007-07-04although the check for HAVE_STRUCT_TIMEVAL solved the redefine it is ↵Gunter Knauf
incorrect; lets see if a check for HAVE_GETTIMEOFDAY also works; if gettimeofday() is present then we can assume we have the timezone struct too.
2007-07-04added check for sys/param.h.Gunter Knauf
2007-07-03trial to catch problem with Daniels cross-mingw ares builds.Gunter Knauf
2007-07-03added NetWare CLIB-own header to solve gcc warnings.Gunter Knauf
2007-07-03few minor changes to make ares compile for NetWare CLIB architecture.Gunter Knauf
2007-07-03fixed rule to build libcares when needed.Gunter Knauf
2007-07-03changed to build for CLIB / LIBC.Gunter Knauf
2007-07-03added libcares to static build if ares enabled.Gunter Knauf
2007-07-02contributors from the 7.16.3 release notesDaniel Stenberg
2007-07-02sync'd with lib makefile changes: use var for awk; fixed RECV* / SEND* ↵Gunter Knauf
defines; debug var can be overwritten; added better compiler path handling.
2007-07-02some more makefile tweaks and hacks to deal with both lib architectures.Gunter Knauf
2007-07-02Fix problem with the indenting noticed by PavelJames Housley