FCGI::Client - client library for fastcgi protocol


FCGI-Client documentation  | view source Contained in the FCGI-Client distribution.

Index


NAME

Top

FCGI::Client - client library for fastcgi protocol

SYNOPSIS

Top

    use FCGI::Client;

    my $sock = IO::Socket::INET->new(
        PeerAddr => '127.0.0.1',
        PeerPort => $port,
    ) or die $!;
    my $client = FCGI::Client::Connection->new( sock => $sock );
    my ( $stdout, $stderr ) = $client->request(
        +{
            REQUEST_METHOD => 'GET',
            QUERY_STRING   => 'foo=bar',
        },
        ''
    );

DESCRIPTION

Top

FCGI::Client is client library for fastcgi protocol.

AUTHOR

Top

Tokuhiro Matsuno <tokuhirom @*(#RJKLFHFSDLJF gmail.com>

THANKS TO

Top

peterkeen

SEE ALSO

Top

FCGI, http://www.fastcgi.com/drupal/node/6?q=node/22

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


FCGI-Client documentation  | view source Contained in the FCGI-Client distribution.