diff options
author | Hans Nilsson <[email protected]> | 2013-11-12 20:17:43 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 10:32:26 +0100 |
commit | d211a8e51d5c578508a63fc8a5d0e8675f4f749c (patch) | |
tree | 9f671bbe7497a7779502d25c8b2bb04a03e24a69 | |
parent | ea05af7cdee9d9ab7260fcda20f118d4f250136e (diff) | |
download | otp-d211a8e51d5c578508a63fc8a5d0e8675f4f749c.tar.gz otp-d211a8e51d5c578508a63fc8a5d0e8675f4f749c.tar.bz2 otp-d211a8e51d5c578508a63fc8a5d0e8675f4f749c.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 b81ac16cd1..b6a38758b2 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}}); |