Initial import of Bongo source code.

This commit is contained in:
alexhudson
2007-01-22 23:37:12 +00:00
parent 79098e9cc8
commit b0c62252c4
3849 changed files with 1450868 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/env perl
use strict;
my $verbose=0; # set to 1 for debugging
my $dir=".";
my $port = 8999; # just a default
my $ipv6;
my $pid=".http.pid"; # name of the pidfile
do {
if($ARGV[0] eq "-v") {
$verbose=1;
}
elsif($ARGV[0] eq "-d") {
$dir=$ARGV[1];
shift @ARGV;
}
elsif($ARGV[0] eq "-p") {
$pid=$ARGV[1];
shift @ARGV;
}
elsif($ARGV[0] =~ /^(\d+)$/) {
$port = $1;
}
elsif($ARGV[0] =~ /^ipv6/i) {
$ipv6="--ipv6 ";
}
} while(shift @ARGV);
exec("server/sws --pidfile $pid $ipv6$port $dir");