Loading tests/ftpserver.pl +3 −1 Original line number Diff line number Diff line Loading @@ -76,6 +76,7 @@ my %commandok = ( 'SIZE' => 'loggedin|twosock', 'PWD' => 'loggedin|twosock', 'QUIT' => 'loggedin|twosock', 'DELE' => 'loggedin|twosock' ); # initially, we're in 'fresh' state Loading @@ -97,6 +98,7 @@ my %displaytext = ('USER' => '331 We are happy you popped in!', 'QUIT' => '221 bye bye baby', # just reply something 'PWD' => '257 "/nowhere/anywhere" is current directory', 'REST' => '350 Yeah yeah we set it there for you', 'DELE' => '200 OK OK OK whatever you say' ); # callback functions for certain commands Loading Loading @@ -300,6 +302,7 @@ $SIG{CHLD} = \&REAPER; my %customreply; sub customize { undef %customreply; open(CUSTOM, "<log/ftpserver.cmd") || return 1; Loading @@ -307,7 +310,6 @@ sub customize { print STDERR "FTPD: Getting commands from log/ftpserver.cmd\n"; } undef %customreply; while(<CUSTOM>) { if($_ =~ /REPLY ([A-Z]+) (.*)/) { $customreply{$1}=$2; Loading Loading
tests/ftpserver.pl +3 −1 Original line number Diff line number Diff line Loading @@ -76,6 +76,7 @@ my %commandok = ( 'SIZE' => 'loggedin|twosock', 'PWD' => 'loggedin|twosock', 'QUIT' => 'loggedin|twosock', 'DELE' => 'loggedin|twosock' ); # initially, we're in 'fresh' state Loading @@ -97,6 +98,7 @@ my %displaytext = ('USER' => '331 We are happy you popped in!', 'QUIT' => '221 bye bye baby', # just reply something 'PWD' => '257 "/nowhere/anywhere" is current directory', 'REST' => '350 Yeah yeah we set it there for you', 'DELE' => '200 OK OK OK whatever you say' ); # callback functions for certain commands Loading Loading @@ -300,6 +302,7 @@ $SIG{CHLD} = \&REAPER; my %customreply; sub customize { undef %customreply; open(CUSTOM, "<log/ftpserver.cmd") || return 1; Loading @@ -307,7 +310,6 @@ sub customize { print STDERR "FTPD: Getting commands from log/ftpserver.cmd\n"; } undef %customreply; while(<CUSTOM>) { if($_ =~ /REPLY ([A-Z]+) (.*)/) { $customreply{$1}=$2; Loading