#!/usr/bin/perl use lib qw( lib extras-lib ); use Sprocket qw( Server Plugin::TermProxy ); my %opts = ( LogLevel => 4, TimeOut => 0, # MaxConnections => 10000, ); Sprocket::Server->spawn( %opts, Name => 'Test Server', ListenPort => 9999, ListenAddress => '0.0.0.0', Plugins => [ { Plugin => Sprocket::Plugin::TermProxy->new(), Priority => 0, }, ], ); $poe_kernel->run(); 1;