diff options
author | Hans Nilsson <[email protected]> | 2013-11-12 20:17:43 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2013-11-19 14:39:34 +0100 |
commit | 3d0277ef3839b1f17769151b889f4f83ef2586d2 (patch) | |
tree | 6c3fd506701a927e59e12430baf9d3f786bc2fc2 | |
parent | 655c2a071feef2bfcc64f26ae7a752480da924ce (diff) | |
download | otp-3d0277ef3839b1f17769151b889f4f83ef2586d2.tar.gz otp-3d0277ef3839b1f17769151b889f4f83ef2586d2.tar.bz2 otp-3d0277ef3839b1f17769151b889f4f83ef2586d2.zip |
.
-rw-r--r-- | lib/inets/src/ftp/ftp.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/inets/src/ftp/ftp.erl b/lib/inets/src/ftp/ftp.erl index 46416bc98e..98f4276eeb 100644 --- a/lib/inets/src/ftp/ftp.erl +++ b/lib/inets/src/ftp/ftp.erl @@ -1688,6 +1688,7 @@ handle_ctrl_result({pos_compl, Lines}, string:tokens(NewPortAddr, [$,])), IP = {A1, A2, A3, A4}, Port = (P1 * 256) + P2, +io:format('tcp connect to ~p:~p, Caller=~p~n',[IP,Port,Caller]), case connect(IP, Port, Timeout, State) of {ok, _, Socket} -> handle_caller(State#state{caller = Caller, dsock = {tcp,Socket}}); |