
PSA::Acceptor::AutoCGI - Detect CGI method and return requests

my $acceptor = PSA::Acceptor::AutoCGI->new();
while (my $request = $acceptor->get_request() ) {
my $psa = PSA->new(request => $request, ...);
}

PSA::Acceptor::AutoCGI is a PSA::Request object factory. On invocation, it determines whether FastCGI, mod_perl or standard CGI invocation is being used.

Returns a new acceptor object. If 'sitename' is given, then the program is considered to be an external FastCGI daemon.
Returns a PSA::Request object, or undef if there are none.
Returns the filehandle (either an IO::Handle or a ref GLOB) to write to to respond to this request
