1FCGI::Client(3pm) User Contributed Perl Documentation FCGI::Client(3pm)
2
3
4
6 FCGI::Client - client library for fastcgi protocol
7
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
25 FCGI::Client is client library for fastcgi protocol.
26
28 Tokuhiro Matsuno <tokuhirom @*(#RJKLFHFSDLJF gmail.com>
29
31 peterkeen
32
34 FCGI, <http://www.fastcgi.com/drupal/node/6?q=node/22>
35
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.0 2020-07-28 FCGI::Client(3pm)