aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-09-21the NSS patch has been committedDaniel Stenberg
2007-09-21Available command line options: 119Daniel Stenberg
2007-09-21Mark Davies fixed Negotiate authentication over proxy, and also introducedDaniel Stenberg
the --proxy-negotiate command line option to allow a user to explicitly select it.
2007-09-20Added variable substitution to the <verify><file> section.Dan Fandrich
Made a few more tests work remotely.
2007-09-20reformatted to be similar to the FAQ to make it look nicer on the site:Daniel Stenberg
http://curl.haxx.se/docs/contribute.html
2007-09-20Achint Mehta pointed out this dead linkDaniel Stenberg
2007-09-20the winsock stuff is made by curl_global_initDaniel Stenberg
2007-09-20fix bad linkDaniel Stenberg
2007-09-20Immanuel Gregoire is the manDaniel Stenberg
2007-09-20Fixed typo in error message.Dan Fandrich
2007-09-18Rob Crittenden provided an NSS update with the following highlights:Daniel Stenberg
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.
2007-09-18mention the prefered source code line length to be less than 80 columnsDaniel Stenberg
2007-09-18Immanuel pointed out that public key SSH auth failed if no public/privateDaniel Stenberg
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.
2007-09-18Use double quotes in command lines for consistency.Dan Fandrich
2007-09-18added a define for Win32 to detect already defined ssize_t.Gunter Knauf
2007-09-18IPv6 is a required feature for these two tests, even if it's not obvious.Dan Fandrich
2007-09-17Fixed the required server entryDan Fandrich
2007-09-17Changed some FTP tests to validate the format of the PORT and EPRT commandsDan Fandrich
sent by curl, if not the addresses themselves.
2007-09-17Added %CLIENTIP and %CLIENT6IP data file substitution variables.Dan Fandrich
Added hooks to the test suite to make it possible to test a curl running on a remote host.
2007-09-17Allow setting the IP address on which to listen for connections.Dan Fandrich
2007-09-17Günter's ldap fixesDaniel Stenberg
2007-09-17Make the ftp server connect to the address given by curl in the PORT/EPRTDan Fandrich
instead of hard-coding it to 127.0.0.1
2007-09-17Made the directory postprocessor more forgiving of input directory formatDan Fandrich
2007-09-15three done, seven to goDaniel Stenberg
2007-09-15Michal Marek made libcurl automatically append ";type=<a|i>" when using HTTPDaniel Stenberg
proxies for FTP urls.
2007-09-15offer a friendlier single-line commandDaniel Stenberg
2007-09-15fixed ldap support for winldap.Gunter Knauf
2007-09-15fixed VC6 makefiles for new ldap linkage.Gunter Knauf
2007-09-15I want these CONNECT problems fixed tooDaniel Stenberg
2007-09-157.17.1 planned release in November 2007, and a bunch of things to deal withDaniel Stenberg
2007-09-14Replaced 127.0.0.1 with %HOSTIP where possibleDan Fandrich
2007-09-14Added LDAPS, SCP and SFTP to curl-config --protocols. Removed andDan Fandrich
fixed some AC_SUBST configure entries.
2007-09-14Added LDAPS, SCP and SFTP to curl-config --protocols.Dan Fandrich
Removed and fixed some AC_SUBST configure entries.
2007-09-13Compile samples with -DCURL_NO_OLDIESDan Fandrich
2007-09-137.17.1-CVS is now the dev versionDaniel Stenberg
2007-09-13start over on 7.17.1Daniel Stenberg
2007-09-13Remove remaining traces of ftp3rdparty.c and mention htmltidy.cDan Fandrich
2007-09-13Version 7.17.0 (13 September 2007)Daniel Stenberg
2007-09-13added some further stuff from the feature-requests tracker, and a bunch of URLsDaniel Stenberg
to the specific tracker entries
2007-09-12TFTP error 0 is no longer treated as successDan Fandrich
2007-09-12Extracting the CURLINFO_PRIVATE pointer makes no point since nothing setDaniel Stenberg
it. This caused a segfault in some fprintf() implementations. Like on Solaris.
2007-09-11rephrased to mention ftpDaniel Stenberg
2007-09-11curl.digimirror.nl is a new mirror in Amsterdam, the NetherlandsDaniel Stenberg
2007-09-11Daniel S (12 September 2007)Daniel Stenberg
- 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.
2007-09-11- I noticed while writing test 541 that the FTP code wrongly did a CWD on theDaniel Stenberg
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.
2007-09-11- Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointedDaniel Stenberg
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.
2007-09-09A brand new binding for SP-Forth was writtenDaniel Stenberg
2007-09-07TFTP now reports the "not defined" TFTP error code 0 as an error,Dan Fandrich
not success.
2007-09-07Added test case 1007 to test permission problem when uploading with TFTPDan Fandrich
(to validate bug #1790403).
2007-09-06http://curl.cheap.co.il is a new mirror in Tel-Aviv, IsraelDaniel Stenberg