about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:17:16 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:17:16 +0100
commitffe94b38e1c9e3ec98aff466d9f8c03d9b4dbf04 (patch)
tree21ddc50b39c8aa1a040c454125306e3fc136a676
parent036afec4834ecaf601e59f9104e351bc7b053edc (diff)
downloadperl-libnet-ffe94b38e1c9e3ec98aff466d9f8c03d9b4dbf04.tar.gz
Remove unhelpful demo: Without the Net::DummyInetd this is not much use
-rw-r--r--MANIFEST1
-rw-r--r--demos/inetd9
2 files changed, 0 insertions, 10 deletions
diff --git a/MANIFEST b/MANIFEST
index 46a20b1..936cfc9 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5,7 +5,6 @@ MANIFEST.SKIP
 Makefile.PL
 README
 demos/ftp
-demos/inetd
 demos/nntp
 demos/nntp.mirror
 demos/pop3
diff --git a/demos/inetd b/demos/inetd
deleted file mode 100644
index 36a00e7..0000000
--- a/demos/inetd
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/local/bin/perl
-
-use Net::DummyInetd;
-use Net::SMTP;
-
-$p = new Net::DummyInetd qw(/usr/lib/sendmail -ba -bs);
-
-$smtp = Net::SMTP->new('localhost', Port => $p->port, Debug => 7);
-$smtp->quit;