summaryrefslogtreecommitdiffstats
path: root/fake_packages
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-23 19:43:02 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-23 19:43:02 +0000
commitd065b28fd679c045a462e8cc5c165d1b3e5b102e (patch)
treedf6ee8b7138f810f283b572b7d540c649fde197e /fake_packages
parente3569ea33ed072782cae3b7fca0e871025b6b4ba (diff)
downloadperl_checker-d065b28fd679c045a462e8cc5c165d1b3e5b102e.tar
perl_checker-d065b28fd679c045a462e8cc5c165d1b3e5b102e.tar.gz
perl_checker-d065b28fd679c045a462e8cc5c165d1b3e5b102e.tar.bz2
perl_checker-d065b28fd679c045a462e8cc5c165d1b3e5b102e.tar.xz
perl_checker-d065b28fd679c045a462e8cc5c165d1b3e5b102e.zip
update Net::FTP fake package for installer
Diffstat (limited to 'fake_packages')
-rw-r--r--fake_packages/Net/FTP.pm124
1 files changed, 118 insertions, 6 deletions
diff --git a/fake_packages/Net/FTP.pm b/fake_packages/Net/FTP.pm
index e01695f..020bcda 100644
--- a/fake_packages/Net/FTP.pm
+++ b/fake_packages/Net/FTP.pm
@@ -1,9 +1,121 @@
package Net::FTP;
+our @ISA = qw();
+sub DESTROY() {}
+sub _ABOR() {}
+sub _ACCT() {}
+sub _ALLO() {}
+sub _APPE() {}
+sub _AUTH() {}
+sub _CDUP() {}
+sub _CWD() {}
+sub _DELE() {}
+sub _FEAT() {}
+sub _HELP() {}
+sub _LIST() {}
+sub _MDTM() {}
+sub _MKD() {}
+sub _MODE() {}
+sub _NLST() {}
+sub _NOOP() {}
+sub _PASS() {}
+sub _PASV() {}
+sub _PORT() {}
+sub _PWD() {}
+sub _QUIT() {}
+sub _REIN() {}
+sub _RESP() {}
+sub _REST() {}
+sub _RETR() {}
+sub _RMD() {}
+sub _RNFR() {}
+sub _RNTO() {}
+sub _SIZE() {}
+sub _SMNT() {}
+sub _STAT() {}
+sub _STOR() {}
+sub _STOU() {}
+sub _STRU() {}
+sub _SYST() {}
+sub _TYPE() {}
+sub _USER() {}
+sub _auth_id { my ($_ftp, $_auth, $_o_resp) = @_ }
+sub _data_cmd() {}
+sub _dataconn() {}
+sub _extract_path { my ($_ftp, $_o_path) = @_ }
+sub _list_cmd() {}
+sub _store_cmd { my ($_ftp, $_cmd, $_local, $_o_remote) = @_ }
+sub abort() {}
+sub account() {}
+sub alloc() {}
+sub appe() {}
+sub append() {}
+sub ascii() {}
+sub authorise() {}
+sub authorize() {}
+sub binary() {}
+sub byte() {}
+sub cdup() {}
+sub cmd() {}
+sub command() {}
+sub cwd { my ($_ftp, $_o_dir) = @_ }
+sub debug_text() {}
+sub delete() {}
+sub dir() {}
+sub ebcdic() {}
+sub feature { my ($_ftp, $_o_feat) = @_ }
+sub get { my ($_ftp, $_remote, $_local, $_o_where) = @_ }
+sub hash { my ($_h, $_o_b) = @_ }
+sub host() {}
+sub list() {}
+sub login { my ($_ftp, $_user, $_pass, $_o_acct) = @_ }
+sub ls() {}
+sub lsl() {}
+sub mdtm() {}
+sub mkdir { my ($_ftp, $_dir, $_o_recurse) = @_ }
+sub new { my (@_more_paras) = @_ }
+sub nlst() {}
+sub parse_response() {}
+sub pasv() {}
+sub pasv_wait { my ($_ftp, $_o_non_pasv) = @_ }
+sub pasv_xfer { my ($_sftp, $_sfile, $_dftp, $_dfile, $_o_unique) = @_ }
+sub pasv_xfer_unique { my ($_sftp, $_sfile, $_dftp, $_o_dfile) = @_ }
+sub port { my ($_ftp, $_o_port) = @_ }
+sub put() {}
+sub put_unique() {}
+sub pwd() {}
+sub quit() {}
+sub quot() {}
+sub rename { my ($_ftp, $_from, $_o_to) = @_ }
+sub response() {}
+sub restart { my ($_ftp, $_o_where) = @_ }
+sub retr() {}
+sub rmdir { my ($_ftp, $_dir, $_o_recurse) = @_ }
+sub site() {}
+sub size { my ($_ftp, $_o_file) = @_ }
+sub stor() {}
+sub stou() {}
+sub supported() {}
+sub type() {}
+sub unique_name() {}
-sub new {}
+package Net::FTP::A;
+our @ISA = qw();
+sub read { my ($_o_timeout) = @_ }
+sub write { my ($_o_timeout) = @_ }
-sub login {}
-sub binary {}
-sub cwd {}
-sub retr {}
-sub code {}
+package Net::FTP::I;
+our @ISA = qw();
+sub read { my ($_o_timeout) = @_ }
+sub write { my ($_o_timeout) = @_ }
+
+package Net::FTP::dataconn;
+our @ISA = qw();
+sub _close() {}
+sub _select { my ($_data, $_timeout, $_o_do_read) = @_ }
+sub abort() {}
+sub bytes_read() {}
+sub can_read() {}
+sub can_write() {}
+sub close() {}
+sub cmd() {}
+sub reading() {}