#
0885d787 |
| 20-Sep-2007 |
Daniel Stenberg |
Immanuel Gregoire is the man
|
#
8c3f40ee |
| 18-Sep-2007 |
Daniel Stenberg |
Rob Crittenden provided an NSS update with the following highlights: o It looks for the NSS database first in the environment variable SSL_DIR, then in /etc/pki/nssdb, then it initiali
Rob Crittenden provided an NSS update with the following highlights: o It looks for the NSS database first in the environment variable SSL_DIR, then in /etc/pki/nssdb, then it initializes with no database if neither of those exist. o If the NSS PKCS#11 libnspsem.so driver is available then PEM files may be loaded, including the ca-bundle. If it is not available then only certificates already in the NSS database are used. o Tries to detect whether a file or nickname is being passed in so the right thing is done o Added a bit of code to make the output more like the OpenSSL module, including displaying the certificate information when connecting in verbose mode o Improved handling of certificate errors (expired, untrusted, etc) The libnsspem.so PKCS#11 module is currently only available in Fedora 8/rawhide. Work will be done soon to upstream it. The NSS module will work with or without it, all that changes is the source of the certificates and keys.
show more ...
|
#
45fd6685 |
| 18-Sep-2007 |
Daniel Stenberg |
Immanuel pointed out that public key SSH auth failed if no public/private key was specified and there was no HOME environment variable, and then it didn't continue to try the other auth metho
Immanuel pointed out that public key SSH auth failed if no public/private key was specified and there was no HOME environment variable, and then it didn't continue to try the other auth methods. Now it will instead try to get the files id_dsa.pub and id_dsa from the current directory if none of the two conditions were met.
show more ...
|
#
551abba2 |
| 17-Sep-2007 |
Daniel Stenberg |
G�nter's ldap fixes
|
#
e04151ed |
| 15-Sep-2007 |
Daniel Stenberg |
Michal Marek made libcurl automatically append ";type=<a|i>" when using HTTP proxies for FTP urls.
|
#
39a416f1 |
| 14-Sep-2007 |
Dan Fandrich |
Added LDAPS, SCP and SFTP to curl-config --protocols. Removed and fixed some AC_SUBST configure entries.
|
#
a18f5994 |
| 13-Sep-2007 |
Daniel Stenberg |
start over on 7.17.1
|
Revision tags: curl-7_17_0 |
|
#
621709c6 |
| 12-Sep-2007 |
Dan Fandrich |
TFTP error 0 is no longer treated as success
|
#
cf613fdb |
| 11-Sep-2007 |
Daniel Stenberg |
rephrased to mention ftp
|
#
e6addcf6 |
| 11-Sep-2007 |
Daniel Stenberg |
curl.digimirror.nl is a new mirror in Amsterdam, the Netherlands
|
#
9e88343a |
| 11-Sep-2007 |
Daniel Stenberg |
Daniel S (12 September 2007) - Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed out a problem with doing an empty upload over FTP on a re-used connection. I a
Daniel S (12 September 2007) - Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed out a problem with doing an empty upload over FTP on a re-used connection. I added test case 541 to reproduce it and to verify the fix. - I noticed while writing test 541 that the FTP code wrongly did a CWD on the second transfer as it didn't store and remember the "" path from the previous transfer so it would instead CWD to the entry path as stored. This worked, but did a superfluous command. Thus, test case 541 now also verifies this fix.
show more ...
|
#
24db40de |
| 09-Sep-2007 |
Daniel Stenberg |
A brand new binding for SP-Forth was written
|
#
14d6db08 |
| 06-Sep-2007 |
Daniel Stenberg |
http://curl.cheap.co.il is a new mirror in Tel-Aviv, Israel
|
#
9d053305 |
| 03-Sep-2007 |
Daniel Stenberg |
I can't spell
|
#
6c4f317f |
| 03-Sep-2007 |
Daniel Stenberg |
curlpp 0.7.1 was relased
|
#
f6251734 |
| 30-Aug-2007 |
Dan Fandrich |
Added more accurate error code returns from SFTP operations. Added test case 615 to test an SFTP upload failure.
|
#
9f44a955 |
| 30-Aug-2007 |
Dan Fandrich |
Renamed several libcurl error codes and options to make them more general and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to p
Renamed several libcurl error codes and options to make them more general and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
show more ...
|
#
7cba40b2 |
| 24-Aug-2007 |
Daniel Stenberg |
Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed out that libcurl didn't deal with large responses from server commands, when the single response was consisting of mu
Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed out that libcurl didn't deal with large responses from server commands, when the single response was consisting of multiple lines but of a total size of 16KB or more. Dan Fandrich improved the ftp test script and provided test case 1006 to repeat the problem, and I fixed the code to make sure this new test case runs fine.
show more ...
|
#
4945b245 |
| 23-Aug-2007 |
Daniel Stenberg |
ported to OS/400
|
#
91fd2c3b |
| 22-Aug-2007 |
Daniel Stenberg |
Bug report #1779751 (http://curl.haxx.se/bug/view.cgi?id=1779751) pointed out that doing first a file:// upload and then an FTP upload crashed libcurl or at best caused furious valgrind compl
Bug report #1779751 (http://curl.haxx.se/bug/view.cgi?id=1779751) pointed out that doing first a file:// upload and then an FTP upload crashed libcurl or at best caused furious valgrind complaints. Fixed now by making sure we free and clear the file-specific struct properly when done with it.
show more ...
|
#
381e3729 |
| 22-Aug-2007 |
Daniel Stenberg |
Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed out that libcurl didn't deal with very long (>16K) FTP server response lines properly. Starting now, libcurl will cho
Bug report #1779054 (http://curl.haxx.se/bug/view.cgi?id=1779054) pointed out that libcurl didn't deal with very long (>16K) FTP server response lines properly. Starting now, libcurl will chop them off (thus the client app will not get the full line) but survive and deal with them fine otherwise. Test case 1003 was added to verify this.
show more ...
|
#
b132e865 |
| 20-Aug-2007 |
Daniel Stenberg |
Based on a patch by Christian Vogt, the FTP code now sets the upcoming download transfer size much earlier to be possible to get read with CURLINFO_CONTENT_LENGTH_DOWNLOAD as soon as possible.
|
#
1aa82dec |
| 17-Aug-2007 |
Daniel Stenberg |
- Robson Braga Araujo filed bug report #1776232 (http://curl.haxx.se/bug/view.cgi?id=1776232) about libcurl calling Curl_client_write(), passing on a const string that the caller may not
- Robson Braga Araujo filed bug report #1776232 (http://curl.haxx.se/bug/view.cgi?id=1776232) about libcurl calling Curl_client_write(), passing on a const string that the caller may not modify and yet it does (on some platforms).
show more ...
|
#
32178092 |
| 17-Aug-2007 |
Daniel Stenberg |
Robson Braga Araujo filed bug report #1776235 (http://curl.haxx.se/bug/view.cgi?id=1776235) about ftp requests with NOBODY on a directory would do a "SIZE (null)" request. This is now fixed a
Robson Braga Araujo filed bug report #1776235 (http://curl.haxx.se/bug/view.cgi?id=1776235) about ftp requests with NOBODY on a directory would do a "SIZE (null)" request. This is now fixed and test case 1000 was added to verify.
show more ...
|
#
5a79532a |
| 17-Aug-2007 |
Daniel Stenberg |
Song Ma provided a patch that cures a problem libcurl has when doing resume HTTP PUT using Digest authentication. Test case 5320 and 5322 were also added to verify the functionality.
|