NAME
Curse::Server::FastCGI - FastCGI Server
SYNOPSIS
use Curse::Server::FastCGI;
my $fcgi = Curse::Server::FastCGI->new;
$fcgi->run;
DESCRIPTION
Curse::Server::FastCGI is a portable pure-Perl FastCGI implementation.
ATTRIBUTES
Curse::Server::FastCGI inherits all attributes from Curse::Server.
METHODS
Curse::Server::FastCGI inherits all methods from Curse::Server and implements the following new ones.
accept_connection
my $connection = $fcgi->accept_connection;
read_record
my ($type, $id, $body) = $fcgi->read_record($connection);
read_request
my $tx = $fcgi->read_request($connection);
role_name
my $name = $fcgi->role_name(3);
role_number
my $number = $fcgi->role_number('FILTER');
run
$fcgi->run;
type_name
my $name = $fcgi->type_name(5);
type_number
my $number = $fcgi->type_number('STDIN');
write_records
$fcgi->write_record($connection, 'STDOUT', $id, 'HTTP/1.1 200 OK');
write_response
$fcgi->write_response($tx);