logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

FCGI::Client - client library for fastcgi protocol

Author

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

Description

       FCGI::Client is client library for fastcgi protocol.

License

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

perl v5.26.2                                       2018-07-21                                  FCGI::Client(3pm)

Name

       FCGI::Client - client library for fastcgi protocol

See Also

Synopsis

           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',
               },
               ''
           );

Thanks To

       peterkeen

See Also