Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-03 | mention "no longer default-appends ;type= on FTP URLs thru proxies" as a bug | Daniel Stenberg | |
fix even if kind of implied by the new option | |||
2007-12-03 | Now libcurl (built with OpenSSL) doesn't return error anymore if the remote | Daniel 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() somewhat | Daniel Stenberg | |
2007-12-03 | Brad Spencer fixed the configure script to assume that there's no | Daniel Stenberg | |
/dev/urandom when built cross-compiled as then the script cannot check for it. | |||
2007-12-03 | removed the ;type= thing for FTP urls through proxy, since that's now only | Daniel 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-02 | 107 - resolve the type= thing for FTP URLs over HTTP proxies, is solved | Daniel Stenberg | |
2007-12-02 | Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to control | Daniel 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-30 | Upped copyright year | Dan Fandrich | |
2007-11-29 | uh, corrected pretty major write error! | Daniel Stenberg | |
2007-11-29 | ftp resumed upload and long Digest nonces | Daniel Stenberg | |
2007-11-29 | A bug report on the curl-library list showed a HTTP Digest session going on | Daniel Stenberg | |
with a 700+ letter nonce. Previously libcurl only support 127 letter ones and now I bumped it to 1023. | |||
2007-11-29 | Fixed the resumed FTP upload loop to not require that the read callback | Daniel Stenberg | |
returns a full buffer on each invoke. | |||
2007-11-29 | include the libssh2 return code in the output for these failures to ease | Daniel Stenberg | |
debugging | |||
2007-11-28 | the gethostbyname fix applied here as well | Daniel Stenberg | |
2007-11-28 | fix next_lookup() to continue searching even if c-ares failed to load the | Daniel 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-28 | When --with-gssapi (without given path) is used, we must use krb5-config to | Daniel Stenberg | |
get the libs as well and not only the include path like we used to. | |||
2007-11-28 | To allow remote log inspection avoid redirecting messages to stderr. | Yang Tse | |
Cleanup some debugging messages. Unlink log file on exit. | |||
2007-11-27 | Remove the check for libdl since that isn't actually used and it causes | Daniel Stenberg | |
warnings. Pointed out by Robin Cornelius. | |||
2007-11-27 | pkgconfig fix by Andreas Schuldei | Daniel Stenberg | |
2007-11-27 | spellfix | Daniel Stenberg | |
2007-11-27 | ConnectTimeout requires OpenSSH 3.7 or later | Yang Tse | |
2007-11-27 | Explicitly 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-26 | Stop ssh and socks servers when verification fails | Yang Tse | |
2007-11-26 | Providing 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-26 | more blurb | Daniel Stenberg | |
2007-11-26 | Added recent changes and spellchecked | Daniel Stenberg | |
2007-11-26 | test1015 --data-urlencode | Daniel Stenberg | |
2007-11-26 | #1 fixed --data-urlencode when no = or @ was used | Daniel Stenberg | |
#2 extended the user-agent buffer since I hit the 128 byte boundary! | |||
2007-11-26 | slightly less outdated | Daniel Stenberg | |
2007-11-26 | Temporary change to better debug startup failures | Yang Tse | |
of test suite ssh and socks servers. | |||
2007-11-25 | Allow different start timeout specification for each server | Yang Tse | |
2007-11-24 | reqdata doesn't exist anymore and the path moved to the UrlState struct | Daniel Stenberg | |
2007-11-24 | struct HandleData is now called struct SingleRequest, and is only for data that | Daniel 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-23 | make 'checkdied' in runtests.pl more robust | Yang Tse | |
2007-11-23 | Revert last change since it breaks running the test suite | Yang Tse | |
when builddir is different from srcdir. | |||
2007-11-23 | Improve chance of running runtests.pl from outside the | Yang Tse | |
source tree 'tests' directory | |||
2007-11-22 | Debugging messages to trace startnew failures | Yang Tse | |
2007-11-22 | Provide a socklen_t definition in curl.h for Win32 API build targets | Yang Tse | |
which don't have one. | |||
2007-11-22 | make nlen a size_t to better hold diffs between pointers etc | Daniel Stenberg | |
2007-11-22 | Alessandro Vesely helped me improve the --data-urlencode's syntax, parser | Daniel Stenberg | |
and documentation. | |||
2007-11-21 | Make the do_complete() function not get called until the DO actually is | Daniel Stenberg | |
compelete, which bascially means when used with the multi interface | |||
2007-11-21 | Temporary change adding additional debugging messages to better pinpoint | Yang Tse | |
startup failures of test suite ssh and socks servers. | |||
2007-11-21 | Fix trying to return outside of a subroutine | Yang Tse | |
2007-11-21 | and we start on 1.5.2! | Daniel Stenberg | |
2007-11-21 | change | Daniel Stenberg | |
2007-11-21 | oops | Daniel Stenberg | |
2007-11-21 | start working on 1.5.1 now | Daniel Stenberg | |
2007-11-21 | this is what 1.5.0 is | Daniel Stenberg | |
2007-11-20 | While inspecting the Negotiate code, I noticed how the proxy auth was using | Daniel Stenberg | |
the same state struct as the host auth, so both could never be used at the same time! I fixed it (without being able to check) to use two separate structs to allow authentication using Negotiate on host and proxy simultanouesly. | |||
2007-11-20 | clarify somewhat what happens to some data when a share is set to be used | Daniel Stenberg | |