summaryrefslogtreecommitdiffstats
path: root/network/mod_limitipconn/test.pl
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2011-03-14 17:10:59 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-03-14 17:10:59 -0500
commitaedc00af99a8006ec7cb3e622c165cf6b747fd6a (patch)
treef115bfd56cff16a516859a548b2878a9b771389a /network/mod_limitipconn/test.pl
parentac83bafacda659e2017faefcc1f5a67b31292342 (diff)
downloadslackbuilds-aedc00af99a8006ec7cb3e622c165cf6b747fd6a.tar.gz
slackbuilds-aedc00af99a8006ec7cb3e622c165cf6b747fd6a.tar.xz
network/mod_limitipconn: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--network/mod_limitipconn/test.pl18
1 files changed, 0 insertions, 18 deletions
diff --git a/network/mod_limitipconn/test.pl b/network/mod_limitipconn/test.pl
deleted file mode 100644
index dc8ca7677b..0000000000
--- a/network/mod_limitipconn/test.pl
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-
-# test.pl: small script to test mod_dosevasive's effectiveness
-
-use IO::Socket;
-use strict;
-
-for(0..100) {
- my($response);
- my($SOCKET) = new IO::Socket::INET( Proto => "tcp",
- PeerAddr=> "127.0.0.1:80");
- if (! defined $SOCKET) { die $!; }
- print $SOCKET "GET /?$_ HTTP/1.0\n\n";
- $response = <$SOCKET>;
- print $response;
- close($SOCKET);
-}
-