Changeset 14233 for misc/runpugs/bin
- Timestamp:
- 10/11/06 05:39:22 (2 years ago)
- Files:
-
- 1 modified
-
misc/runpugs/bin/termserv.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
misc/runpugs/bin/termserv.pl
r14202 r14233 2 2 use warnings; 3 3 use strict; 4 use utf8; 4 5 use lib '../lib/'; 5 6 use WebTerminal::Server; 6 #$SIG{USR1}=\&timeout; #sub {print time,"\n"};7 7 my $host = 'localhost'; 8 8 my $port = 2057; 9 &run($host,$port); 9 $ENV{PUGS_SAFEMODE}=1; 10 &WebTerminal::Server::run($host,$port); 10 11
