Commit 4efa0d9f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ftp@example.com is now the new anonymous FTP password. I opted for 'ftp' on

the left side of @ to make it short(er).
parent e021fe94
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,9 @@
                                  Changelog

Daniel (13 February 2007)
- The default password for anonymous FTP connections is now changed to be
  "ftp@example.com".

- Robert A. Monat made libcurl build fine with VC2005 - it doesn't have
  gmtime_r() like the older VC versions. He also made use of some machine-
  specific defines to differentiate the "OS" define.
+6 −5
Original line number Diff line number Diff line
@@ -11,16 +11,17 @@ Curl and libcurl 7.16.2

This release includes the following changes:
 
 o Added CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS
 o Added CURLOPT_HTTP_CONTENT_DECODING, CURLOPT_HTTP_TRANSFER_DECODING and
 o added CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS
 o added CURLOPT_HTTP_CONTENT_DECODING, CURLOPT_HTTP_TRANSFER_DECODING and
   --raw
 o Added support for using the NSS library for TLS/SSL
 o added support for using the NSS library for TLS/SSL
 o changed default anonymous FTP password

This release includes the following bugfixes:

 o in testsuite, update test cookies expiration from 2007-Feb-1 to year 2035 
 o socks5 works
 o 
 o builds fine with VC2005

This release includes the following known bugs:

@@ -38,6 +39,6 @@ This release would not have looked like this without help, code, reports and
advice from friends like these:

 Yang Tse, Manfred Schwarb, Michael Wallner, Jeff Pohlmeyer, Shmulik Regev,
 Rob Crittenden
 Rob Crittenden, Robert A. Monat

        Thanks! (and sorry if I forgot to mention someone)
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@
#define DICT_DEFINE3 "/LOOKUP:"

#define CURL_DEFAULT_USER "anonymous"
#define CURL_DEFAULT_PASSWORD "curl_by_daniel@haxx.se"
#define CURL_DEFAULT_PASSWORD "ftp@example.com"

#include "cookie.h"
#include "formdata.h"
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ filter off really nothing
</strip>
<protocol>
USER anonymous
PASS curl_by_daniel@haxx.se
PASS ftp@example.com
PWD
EPSV
TYPE A
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ ftp://%HOSTIP:%FTPPORT/ -P %HOSTIP
</strip>
<protocol>
USER anonymous
PASS curl_by_daniel@haxx.se
PASS ftp@example.com
PWD
PORT 127,0,0,1,243,212
TYPE A
Loading