1FCGI::Client(3pm)     User Contributed Perl Documentation    FCGI::Client(3pm)
2
3
4

NAME

6       FCGI::Client - client library for fastcgi protocol
7

SYNOPSIS

9           use FCGI::Client;
10
11           my $sock = IO::Socket::INET->new(
12               PeerAddr => '127.0.0.1',
13               PeerPort => $port,
14           ) or die $!;
15           my $client = FCGI::Client::Connection->new( sock => $sock );
16           my ( $stdout, $stderr ) = $client->request(
17               +{
18                   REQUEST_METHOD => 'GET',
19                   QUERY_STRING   => 'foo=bar',
20               },
21               ''
22           );
23

DESCRIPTION

25       FCGI::Client is client library for fastcgi protocol.
26

AUTHOR

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

THANKS TO

31       peterkeen
32

SEE ALSO

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

LICENSE

37       This library is free software; you can redistribute it and/or modify it
38       under the same terms as Perl itself.
39
40
41
42perl v5.32.1                      2021-01-27                 FCGI::Client(3pm)
Impressum