Lines Matching refs:command

241   $ftp->command(uc $cmd, @_);
249 $ftp->command("SITE", @_);
386 $ok = $ftp->command("SITE", ${*$ftp}{'net_ftp_host'})->response;
389 $ok = $ftp->command("OPEN", ${*$ftp}{'net_ftp_host'})->response;
520 $ftp->command(pack("C", TELNET_DM) . "ABOR");
1148 $ftp->command($cmd, @_);
1177 $ftp->command($cmd, @_);
1210 sub command { subroutine
1214 $ftp->SUPER::command(@_);
1332 sub cmd { shift->command(@_)->response() }
1340 sub _ABOR { shift->command("ABOR")->response() == CMD_OK }
1341 sub _ALLO { shift->command("ALLO", @_)->response() == CMD_OK }
1342 sub _CDUP { shift->command("CDUP")->response() == CMD_OK }
1343 sub _NOOP { shift->command("NOOP")->response() == CMD_OK }
1344 sub _PASV { shift->command("PASV")->response() == CMD_OK }
1345 sub _QUIT { shift->command("QUIT")->response() == CMD_OK }
1346 sub _DELE { shift->command("DELE", @_)->response() == CMD_OK }
1347 sub _CWD { shift->command("CWD", @_)->response() == CMD_OK }
1348 sub _PORT { shift->command("PORT", @_)->response() == CMD_OK }
1349 sub _RMD { shift->command("RMD", @_)->response() == CMD_OK }
1350 sub _MKD { shift->command("MKD", @_)->response() == CMD_OK }
1351 sub _PWD { shift->command("PWD", @_)->response() == CMD_OK }
1352 sub _TYPE { shift->command("TYPE", @_)->response() == CMD_OK }
1353 sub _RNTO { shift->command("RNTO", @_)->response() == CMD_OK }
1354 sub _RESP { shift->command("RESP", @_)->response() == CMD_OK }
1355 sub _MDTM { shift->command("MDTM", @_)->response() == CMD_OK }
1356 sub _SIZE { shift->command("SIZE", @_)->response() == CMD_OK }
1357 sub _HELP { shift->command("HELP", @_)->response() == CMD_OK }
1358 sub _STAT { shift->command("STAT", @_)->response() == CMD_OK }
1359 sub _FEAT { shift->command("FEAT", @_)->response() == CMD_OK }
1360 sub _PBSZ { shift->command("PBSZ", @_)->response() == CMD_OK }
1361 sub _PROT { shift->command("PROT", @_)->response() == CMD_OK }
1362 sub _CCC { shift->command("CCC", @_)->response() == CMD_OK }
1363 sub _EPRT { shift->command("EPRT", @_)->response() == CMD_OK }
1364 sub _EPSV { shift->command("EPSV", @_)->response() == CMD_OK }
1365 sub _APPE { shift->command("APPE", @_)->response() == CMD_INFO }
1366 sub _LIST { shift->command("LIST", @_)->response() == CMD_INFO }
1367 sub _NLST { shift->command("NLST", @_)->response() == CMD_INFO }
1368 sub _RETR { shift->command("RETR", @_)->response() == CMD_INFO }
1369 sub _STOR { shift->command("STOR", @_)->response() == CMD_INFO }
1370 sub _STOU { shift->command("STOU", @_)->response() == CMD_INFO }
1371 sub _RNFR { shift->command("RNFR", @_)->response() == CMD_MORE }
1372 sub _REST { shift->command("REST", @_)->response() == CMD_MORE }
1373 sub _PASS { shift->command("PASS", @_)->response() }
1374 sub _ACCT { shift->command("ACCT", @_)->response() }
1375 sub _AUTH { shift->command("AUTH", @_)->response() }
1380 my $ok = $ftp->command("USER", @_)->response();
1383 $ok = $ftp->command("user", @_)->response()