sourcemod/extensions/curl/curl-src/tests/httpserver.pl

37 lines
695 B
Perl
Raw Normal View History

2009-01-09 00:31:00 +01:00
#!/usr/bin/env perl
use strict;
2013-03-18 01:55:59 +01:00
my $verbose=0; # set to 1 for debugging
2009-01-09 00:31:00 +01:00
2013-03-18 01:55:59 +01:00
my $dir=".";
my $port = 8999; # just a default
my $ipv6;
my $pid=".http.pid"; # name of the pidfile
my $fork;
do {
if($ARGV[0] eq "-v") {
$verbose=1;
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
elsif($ARGV[0] eq "-d") {
$dir=$ARGV[1];
shift @ARGV;
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
elsif($ARGV[0] eq "-p") {
$pid=$ARGV[1];
shift @ARGV;
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
elsif($ARGV[0] eq "--fork") {
$fork = $ARGV[0];
shift @ARGV;
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
elsif($ARGV[0] =~ /^(\d+)$/) {
$port = $1;
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
elsif($ARGV[0] =~ /^ipv6/i) {
$ipv6="--ipv6 ";
2009-01-09 00:31:00 +01:00
}
2013-03-18 01:55:59 +01:00
} while(shift @ARGV);
2009-01-09 00:31:00 +01:00
2013-03-18 01:55:59 +01:00
exec("server/sws --pidfile $pid$fork $ipv6$port $dir");