aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-12-05fix compiler warningDaniel Stenberg
2007-12-05added test548 which uses the lib547 source file, preparing for test547 whichDaniel Stenberg
is supposed to repeat the bug report "NTLM proxy authentication with CURLOPT_READDATA seems broken." posted on the curl-library mailing list on dec 3 2007.
2007-12-04Fix compiler warning: variable may be used uninitializedYang Tse
2007-12-03Ray Pekowski filed bug report #1842029Daniel Stenberg
2007-12-03Fix three issues previous cleanup introduces.Yang Tse
2007-12-03SSL session id caching bugfixDaniel Stenberg
2007-12-03Bug report #1842029 (http://curl.haxx.se/bug/view.cgi?id=1842029) identifiedDaniel Stenberg
a problem with SSL session caching that prevent it from working, and the associated fix!
2007-12-03mention "no longer default-appends ;type= on FTP URLs thru proxies" as a bugDaniel Stenberg
fix even if kind of implied by the new option
2007-12-03Now libcurl (built with OpenSSL) doesn't return error anymore if the remoteDaniel Stenberg
SSL-based server doesn't present a certificate when the request is told to ignore certificate verification anyway.
2007-12-03 Erik Kline cleaned up ares_gethostbyaddr.c:next_lookup() somewhatDaniel Stenberg
2007-12-03Brad Spencer fixed the configure script to assume that there's noDaniel Stenberg
/dev/urandom when built cross-compiled as then the script cannot check for it.
2007-12-03removed the ;type= thing for FTP urls through proxy, since that's now onlyDaniel Stenberg
present when enabled by on option which isn't done by default (and isn't even available for the curl app atm)
2007-12-02107 - resolve the type= thing for FTP URLs over HTTP proxies, is solvedDaniel Stenberg
2007-12-02Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to controlDaniel Stenberg
the appending of the "type=" thing on FTP URLs when they are passed to a HTTP proxy. Some proxies just don't like that appending (which is done unconditionally in 7.17.1), and some proxies treat binary/ascii transfers better with the appending done!
2007-11-30Upped copyright yearDan Fandrich
2007-11-29uh, corrected pretty major write error!Daniel Stenberg
2007-11-29ftp resumed upload and long Digest noncesDaniel Stenberg
2007-11-29A bug report on the curl-library list showed a HTTP Digest session going onDaniel Stenberg
with a 700+ letter nonce. Previously libcurl only support 127 letter ones and now I bumped it to 1023.
2007-11-29Fixed the resumed FTP upload loop to not require that the read callbackDaniel Stenberg
returns a full buffer on each invoke.
2007-11-29include the libssh2 return code in the output for these failures to easeDaniel Stenberg
debugging
2007-11-28the gethostbyname fix applied here as wellDaniel Stenberg
2007-11-28fix next_lookup() to continue searching even if c-ares failed to load theDaniel Stenberg
/etc/hosts file, pointed out by Erik Kline: http://daniel.haxx.se/projects/c-ares/mail/c-ares-archive-2007-11/0027.shtml
2007-11-28When --with-gssapi (without given path) is used, we must use krb5-config toDaniel Stenberg
get the libs as well and not only the include path like we used to.
2007-11-28To allow remote log inspection avoid redirecting messages to stderr.Yang Tse
Cleanup some debugging messages. Unlink log file on exit.
2007-11-27Remove the check for libdl since that isn't actually used and it causesDaniel Stenberg
warnings. Pointed out by Robin Cornelius.
2007-11-27pkgconfig fix by Andreas SchuldeiDaniel Stenberg
2007-11-27spellfixDaniel Stenberg
2007-11-27ConnectTimeout requires OpenSSH 3.7 or laterYang Tse
2007-11-27Explicitly disallow remote hosts to connect to local forwarded ports,Yang Tse
the socks server port in the test suite. This is the default setting unless a tinkered built ssh is being used.
2007-11-26Stop ssh and socks servers when verification failsYang Tse
2007-11-26Providing an explicit bind address besides the port for dynamic ↵Yang Tse
application-level port forwarding, our socks port, prevents ssh from running on some systems. By default, ssh binds local port forwardings to the loopback address, since this was the address being given as the explicit bind address, now it isn't given.
2007-11-26more blurbDaniel Stenberg
2007-11-26Added recent changes and spellcheckedDaniel Stenberg
2007-11-26test1015 --data-urlencodeDaniel Stenberg
2007-11-26#1 fixed --data-urlencode when no = or @ was usedDaniel Stenberg
#2 extended the user-agent buffer since I hit the 128 byte boundary!
2007-11-26slightly less outdatedDaniel Stenberg
2007-11-26Temporary change to better debug startup failuresYang Tse
of test suite ssh and socks servers.
2007-11-25Allow different start timeout specification for each serverYang Tse
2007-11-24reqdata doesn't exist anymore and the path moved to the UrlState structDaniel Stenberg
2007-11-24struct HandleData is now called struct SingleRequest, and is only for data thatDaniel Stenberg
is inited at the start of the DO action. I removed the Curl_transfer_keeper struct completely, and I had to move out a few struct members (that had to be set before DO or used after DONE) to the UrlState struct. The SingleRequest struct is accessed with SessionHandle->req. One of the biggest reasons for doing this was the bunch of duplicate struct members in HandleData and Curl_transfer_keeper since it was really messy to keep track of two variables with the same name and basically the same purpose!
2007-11-23make 'checkdied' in runtests.pl more robustYang Tse
2007-11-23Revert last change since it breaks running the test suiteYang Tse
when builddir is different from srcdir.
2007-11-23Improve chance of running runtests.pl from outside theYang Tse
source tree 'tests' directory
2007-11-22Debugging messages to trace startnew failuresYang Tse
2007-11-22Provide a socklen_t definition in curl.h for Win32 API build targetsYang Tse
which don't have one.
2007-11-22make nlen a size_t to better hold diffs between pointers etcDaniel Stenberg
2007-11-22Alessandro Vesely helped me improve the --data-urlencode's syntax, parserDaniel Stenberg
and documentation.
2007-11-21Make the do_complete() function not get called until the DO actually isDaniel Stenberg
compelete, which bascially means when used with the multi interface
2007-11-21Temporary change adding additional debugging messages to better pinpointYang Tse
startup failures of test suite ssh and socks servers.
2007-11-21Fix trying to return outside of a subroutineYang Tse