1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Report the correct size when 'verifiedserver' is requested.

This commit is contained in:
Daniel Stenberg 2004-03-01 07:16:45 +00:00
parent d818cbe58c
commit 78f52c05a9

View File

@ -282,7 +282,9 @@ sub RETR_command {
if($testno =~ /^verifiedserver$/) {
# this is the secret command that verifies that this actually is
# the curl test server
print "150 Binary junk (10 bytes).\r\n";
my $response = "WE ROOLZ: $$\r\n";
my $len = length($response);
print "150 Binary junk ($len bytes).\r\n";
print SOCK "WE ROOLZ: $$\r\n";
close(SOCK);
print "226 File transfer complete\r\n";