diff options
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) = @_; +} |