aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-01-10Michal Marek made curl-config --libs not include /usr/lib64 in the outputDaniel Stenberg
(it already before skipped /usr/lib). /usr/lib64 is the default library directory on many 64bit systems and it's unlikely that anyone would use the path privately on systems where it's not.
2008-01-10Temporary change to help debugging SSH server verification failuresYang Tse
2008-01-10Two more items done:Daniel Stenberg
109 - curl_easy_pause 110 - seekfunction
2008-01-10Georg Lippitsch brought CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA to allowDaniel Stenberg
libcurl to seek in a given input stream. This is particularly important when doing upload resumes when there's already a huge part of the file present remotely. Before, and still if this callback isn't used, libcurl will read and through away the entire file up to the point to where the resuming begins (which of course can be a slow opereration depending on file size, I/O bandwidth and more). This new function will also be preferred to get used instead of the CURLOPT_IOCTLFUNCTION for seeking back in a stream when doing multi-stage HTTP auth with POST/PUT.
2008-01-10Nikitinskit Dmitriy filed bug report #1868255Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies and fixes a problem with parsing WWW-Authenticate: headers with additional spaces in the line that the parser wasn't written to deal with.
2008-01-10corrected commentDaniel Stenberg
2008-01-09fix compiler warningYang Tse
2008-01-09Fix file IdYang Tse
2008-01-09Add /usr/freeware/sbin and /usr/freeware/libexec to the ssh binariesYang Tse
locations search list.
2008-01-08added the --retry problems mention on the curl-library list todayDaniel Stenberg
2008-01-08Partially cleanup debugging messages in test harness, introduced forYang Tse
new minimum SSH version support for SCP, SFTP and SOCKS tests. Some verbosity which still remains, will go out before next release.
2008-01-08Remove increased loglevel intended to debug autobuild's publickeyYang Tse
authentication failures when using OpenSSH 2.9.9 or SunSSH. Verified fact: Even when only using publickey authentication, OpenSSH and SunSSH first validate the user, this implies that if the user validation fails, 'invalid user', the publickey authentication will not be allowed to complete.
2008-01-08Introducing curl_easy_pause() and new magic return codes for both the readDaniel Stenberg
and the write callbacks that now can make a connection's reading and/or writing get paused.
2008-01-08removed 113, both bugs #1850730 and #1854175 are fixed in CVSDaniel Stenberg
2008-01-08Change typecast due to ↵Yang Tse
http://cool.haxx.se/cvs.cgi/curl/include/curl/curl.h.diff?r1=1.336&r2=1.337
2008-01-08Increase loglevel to debug autobuild's publickey authenticationYang Tse
failures when using OpenSSH 2.9.9 or SunSSH
2008-01-08Display ssh server log and configuration upon socks server failureYang Tse
2008-01-07Fixed test descriptionDan Fandrich
2008-01-07ILE RPG support update (from include/curl/curl.h)Patrick Monnerat
2008-01-06updated URLs and moved down two issues to the new "less likely" sectionDaniel Stenberg
2008-01-06more SOCKS5_HOSTNAME adjustments from Richard AttererDaniel Stenberg
2008-01-06make sure we deal with SOCKS5_HOSTNAME as a proxy type as wellDaniel Stenberg
2008-01-06Richard Atterer reverted back what I missed in my previous revert ;-)Daniel Stenberg
2008-01-06make sure CURLPROXY_SOCKS5_HOSTNAME is taken care of as wellDaniel Stenberg
2008-01-06fixed: 116 - bug #1863171, curl_getdate() bugDaniel Stenberg
added: 117 - Eric Landes patch for introducing the --tcp-keep* options
2008-01-06Jeff Johnson filed bug report #1863171Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1863171) where he pointed out that libcurl's date parser didn't accept a +1300 time zone which actually is used fairly often (like New Zealand's Dailight Savings Time), so I modified the parser to now accept up to and including -1400 to +1400.
2008-01-06Increase MaxAuthTries from 0 to 10. Using a value of 0 is too restrictiveYang Tse
2008-01-05Based on further discussion on curl-library, I reverted yesterday's SOCKS5Daniel Stenberg
code to instead introduce support for a new proxy type called CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy instead of IP address and there's thus no longer any need for a new curl_easy_setopt() option. The default SOCKS5 proxy is again back to sending the IP address to the proxy. The new curl command line option for enabling sending host name to a SOCKS5 proxy is now --socks5-hostname.
2008-01-05Added Daniel Egger and extended the --no-keep-alive descriptionDaniel Stenberg
2008-01-05added keywordDaniel Stenberg
2008-01-05Don't abort operation when attempting to set SO_KEEPALIVEYang Tse
fails, just issue a warning and ignore the failure.
2008-01-04"yes" must be in quotes to be XML compatibleDan Fandrich
2008-01-04111 - DNS resolve over socks5 is doneDaniel Stenberg
added 116 - bug #1863171, curl_getdate() bug
2008-01-04Daniel Egger provided 'nonewline=yes' support for the <stdout> sectionDaniel Stenberg
2008-01-04Based on Maxim Perenesenko's patch, we now do SOCKS5 operations and let theDaniel Stenberg
proxy do the host name resolving and only if --socks5ip (or CURLOPT_SOCKS5_RESOLVE_LOCAL) is used we resolve the host name locally and pass on the IP address only to the proxy.
2008-01-0414.3 extend CURLOPT_SOCKOPTFUNCTION prototypeDaniel Stenberg
(for next SONAME bump)
2008-01-04Missing newline at end of messageYang Tse
2008-01-04Fix 'format string' compiler warningYang Tse
2008-01-04'ControlPath' ssh client configuration file option requires OpenSSH 4.2 orYang Tse
later to accept 'none' as an indication to disable connection multiplexing
2008-01-04SunSSH 1.1 ssh client does not support config file options:Yang Tse
ConnectTimeout ForwardX11Trusted HashKnownHosts RekeyLimit ServerAliveCountMax ServerAliveInterval
2008-01-04- Display curl_ssh_config when socks server fails to start.Yang Tse
- Capability of running socks5 tests must be based on ssh daemon version and not on ssh client version.
2008-01-04Make sure @INC is modified before 'using' the sshhelp module.Yang Tse
2008-01-04'LocalCommand' no longer used for ssh client config file. When used itYang Tse
requires a non blank argument.
2008-01-03Modify test harness so that the minimum SSH version required to runYang Tse
SCP, SFTP and SOCKS4 tests is now OpenSSH 2.9.9 or SunSSH 1.0 For SOCKS5 tests minimum versions are OpenSSH 3.7 or SunSSH 1.0
2008-01-03'false' and 'true' are not built-ins on most compilers.Gisle Vanem
Use TRUE/FALSE from setup_once.h.
2008-01-02one gone, one addedDaniel Stenberg
2008-01-02- I fixed two cases of missing return code checks when handling chunkedDaniel Stenberg
decoding where a write error (or abort return from a callback) didn't stop libcurl's processing.
2008-01-02I removed the socklen_t use from the public curl/curl.h header and insteadDaniel Stenberg
made it an unsigned int. The type was only used in the curl_sockaddr struct definition (only used by the curl_opensocket_callback). On all platforms I could find information about, socklen_t is 32 unsigned bits large so I don't think this will break the API or ABI. The main reason for this change is of course for all the platforms that don't have a socklen_t definition in their headers to build fine again. Providing our own configure magic and custom definition of socklen_t on those systems proved to work but was a lot of cruft, code and extra magic needed - when this very small change of type seems harmless and still solves the missing socklen_t problem.
2008-01-02Richard Atterer brought a patch that added support for SOCKS4a proxies, whichDaniel Stenberg
is an inofficial PROXY4 variant that sends the hostname to the proxy instead of the resolved address (which is already supported by SOCKS5). --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can now be set to CURLPROXY_SOCKS4A as well.
2008-01-02updatedDaniel Stenberg