=head1 NAME
FCGI - Fast CGI module
=head1 SYNOPSIS
use FCGI;
$count = 0;
while(FCGI::accept() >= 0) {
print("Content-type: text/html\r\n\r\n", ++$count);
}
=head1 DESCRIPTION
Functions:
=over 4
=item FCGI::accept()
Accepts a connection. Returns 0 on success.
If a connection has been accepted before, the old
one will be finished first.
=item FCGI::finish()
Finishes accepted connection.
=item FCGI::flush()
Flushes accepted connection.
=item FCGI::set_exit_status(status)
Sets the exit status that finish returns to the server.
=item FCGI::start_filter_data()
Does anyone use this function ?
=back
=head1 AUTHOR
Sven Verdoolaege <skimo@kotnet.org>
=cut
__END__