#
11936474 |
| 02-Oct-2007 |
Daniel Stenberg |
known bug #46: chunked-encoded CONNECT responses from a http proxy now works. Added test case 1008 to verify. Note that #47 is still there.
|
#
ec08e2f9 |
| 30-Sep-2007 |
Daniel Stenberg |
Alex Fishman reported a curl_easy_escape() problem that was made the function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixe
Alex Fishman reported a curl_easy_escape() problem that was made the function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixed it and added test case 543 to verify.
show more ...
|
#
f58ba5ab |
| 29-Sep-2007 |
Daniel Stenberg |
Immanuel Gregoire fixed a problem with persistent transfers over SFTP - the previous proto struct was kept.
|
#
2c105af9 |
| 28-Sep-2007 |
Daniel Stenberg |
Adapted the c-ares code to the API change c-ares 1.5.0 brings in the notifier callback(s).
|
#
9b550564 |
| 26-Sep-2007 |
Daniel Stenberg |
we added a curl_easy_setopt() option too
|
#
fd4cf78f |
| 26-Sep-2007 |
Daniel Stenberg |
Philip Langdale provided the new CURLOPT_POST301 option for curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 respons
Philip Langdale provided the new CURLOPT_POST301 option for curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify.
show more ...
|
#
a6315359 |
| 26-Sep-2007 |
Daniel Stenberg |
Max Katsev reported that when doing a libcurl FTP request with CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked
Max Katsev reported that when doing a libcurl FTP request with CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it.
show more ...
|
#
775f86cb |
| 24-Sep-2007 |
Daniel Stenberg |
Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and als
Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added.
show more ...
|
#
75f6c36e |
| 21-Sep-2007 |
Daniel Stenberg |
Available command line options: 119
|
#
015d5869 |
| 21-Sep-2007 |
Daniel Stenberg |
Mark Davies fixed Negotiate authentication over proxy, and also introduced the --proxy-negotiate command line option to allow a user to explicitly select it.
|
#
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
|