summaryrefslogtreecommitdiff
path: root/tests/docroot/www/get-header.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/docroot/www/get-header.pl')
-rw-r--r--tests/docroot/www/get-header.pl8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/docroot/www/get-header.pl b/tests/docroot/www/get-header.pl
deleted file mode 100644
index 905f3e79..00000000
--- a/tests/docroot/www/get-header.pl
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl
-
-my $s = $ENV{$ENV{"QUERY_STRING"}};
-
-printf("Content-Length: %d\r\n", length($s));
-print "Content-Type: text/plain\r\n\r\n";
-
-print $s;