diff options
author | Hans Nilsson <[email protected]> | 2013-11-12 15:35:37 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2013-11-19 14:39:34 +0100 |
commit | 3661fbde3b91b53fcdcf4db272407425647b9a45 (patch) | |
tree | 794e8d14556904fa63ebcff08af949fdd6f9c5db /lib/inets/src/ftp/ftp_response.erl | |
parent | 0ec450535d350a8ccaf10cbe660d2c36c1ed85f0 (diff) | |
download | otp-3661fbde3b91b53fcdcf4db272407425647b9a45.tar.gz otp-3661fbde3b91b53fcdcf4db272407425647b9a45.tar.bz2 otp-3661fbde3b91b53fcdcf4db272407425647b9a45.zip |
ftp: towards a working ftps, chapter 1
Diffstat (limited to 'lib/inets/src/ftp/ftp_response.erl')
-rw-r--r-- | lib/inets/src/ftp/ftp_response.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/src/ftp/ftp_response.erl b/lib/inets/src/ftp/ftp_response.erl index b0e8a2ef07..dfe180ff18 100644 --- a/lib/inets/src/ftp/ftp_response.erl +++ b/lib/inets/src/ftp/ftp_response.erl @@ -175,7 +175,8 @@ error_string(Reason) -> %% Positive Preleminary Reply interpret_status(?POS_PREL,_,_) -> pos_prel; -interpret_status(?POS_COMPL, ?AUTH_ACC, 3) -> tls_upgrade; +%%FIXME ??? 3??? interpret_status(?POS_COMPL, ?AUTH_ACC, 3) -> tls_upgrade; +interpret_status(?POS_COMPL, ?AUTH_ACC, 4) -> tls_upgrade; %% Positive Completion Reply interpret_status(?POS_COMPL,_,_) -> pos_compl; %% Positive Intermediate Reply nedd account |