diff options
| author | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 15:08:17 +0000 |
|---|---|---|
| committer | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 15:08:17 +0000 |
| commit | 2033330a441ab99695c064faf6d55af3d2f7732d (patch) | |
| tree | ae8483790358b1a7e971b8676191a156fced72b1 /fake_packages/Net | |
| parent | 60e159ef702b60aeb4515f36ca23b8a73181d028 (diff) | |
| download | perl_checker-2033330a441ab99695c064faf6d55af3d2f7732d.tar perl_checker-2033330a441ab99695c064faf6d55af3d2f7732d.tar.gz perl_checker-2033330a441ab99695c064faf6d55af3d2f7732d.tar.bz2 perl_checker-2033330a441ab99695c064faf6d55af3d2f7732d.tar.xz perl_checker-2033330a441ab99695c064faf6d55af3d2f7732d.zip | |
re-sync after the big svn loss
Diffstat (limited to 'fake_packages/Net')
| -rw-r--r-- | fake_packages/Net/DNS.pm | 7 | ||||
| -rw-r--r-- | fake_packages/Net/FTP.pm | 9 | ||||
| -rw-r--r-- | fake_packages/Net/Ping.pm | 9 |
3 files changed, 25 insertions, 0 deletions
diff --git a/fake_packages/Net/DNS.pm b/fake_packages/Net/DNS.pm new file mode 100644 index 0000000..e300f12 --- /dev/null +++ b/fake_packages/Net/DNS.pm @@ -0,0 +1,7 @@ +package Net::DNS; + +package Net::DNS::Resolver; + +sub new {} +sub query {} +sub answer {} diff --git a/fake_packages/Net/FTP.pm b/fake_packages/Net/FTP.pm new file mode 100644 index 0000000..e01695f --- /dev/null +++ b/fake_packages/Net/FTP.pm @@ -0,0 +1,9 @@ +package Net::FTP; + +sub new {} + +sub login {} +sub binary {} +sub cwd {} +sub retr {} +sub code {} diff --git a/fake_packages/Net/Ping.pm b/fake_packages/Net/Ping.pm new file mode 100644 index 0000000..1a8f8a9 --- /dev/null +++ b/fake_packages/Net/Ping.pm @@ -0,0 +1,9 @@ +package Net::Ping; + +sub new { + my ($_class, @_l) = @_; +} + +sub ping { + my ($_class, $_host, $_o_timeout) = @_; +} |
