From: Daniel Stenberg Date: Thu, 20 Jan 2005 22:05:44 +0000 (+0000) Subject: add support for NOOP X-Git-Tag: curl-7_13_0~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5065e462bf258a456f7bfc3c3af1dbd942713d1;p=thirdparty%2Fcurl.git add support for NOOP --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index f348de96f6..bffa30a4d3 100644 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -136,6 +136,7 @@ my %commandok = ( 'RNTO' => 'loggedin|twosock', 'DELE' => 'loggedin|twosock', 'MDTM' => 'loggedin|twosock', + 'NOOP' => 'loggedin|twosock', ); # initially, we're in 'fresh' state @@ -162,6 +163,7 @@ my %displaytext = ('USER' => '331 We are happy you popped in!', 'DELE' => '200 OK OK OK whatever you say', 'RNFR' => '350 Received your order. Please provide more', 'RNTO' => '250 Ok, thanks. File renaming completed.', + 'NOOP' => '200 Yes, I\'m very good at doing nothing.', ); # callback functions for certain commands