summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl
diff options
context:
space:
mode:
Diffstat (limited to 'web/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl')
-rwxr-xr-xweb/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl34
1 files changed, 0 insertions, 34 deletions
diff --git a/web/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl b/web/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl
deleted file mode 100755
index 2d71a654f..000000000
--- a/web/server/h2o/libh2o/misc/p5-Server-Starter/t/06-autorestart-echod.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-#! /usr/bin/perl
-
-use strict;
-use warnings;
-
-use lib qw(blib/lib lib);
-
-use IO::Socket::INET;
-use Server::Starter qw(server_ports);
-
-my $sigfn = shift @ARGV;
-open my $sigfh, '>', $sigfn
- or die "could not open file:$sigfn:$!";
-
-$SIG{TERM} = $SIG{USR1} = sub {
- my $signame = shift;
- print $sigfh $signame;
- exit 0;
-};
-
-my $listener = IO::Socket::INET->new(
- Proto => 'tcp',
-);
-$listener->fdopen((values %{server_ports()})[0], 'w')
- or die "failed to bind listening socket:$!";
-
-while (1) {
- if (my $conn = $listener->accept) {
- my $buf;
- while ($conn->sysread($buf, 1048576) > 0) {
- $conn->syswrite("$$:$buf");
- }
- }
-}