File: README.md

package info (click to toggle)
libfcgi-client-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 232 kB
  • sloc: ruby: 510; perl: 408; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 875 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# NAME

FCGI::Client - client library for fastcgi protocol

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

# DESCRIPTION

FCGI::Client is client library for fastcgi protocol.

# AUTHOR

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

# THANKS TO

peterkeen

# SEE ALSO

[FCGI](https://metacpan.org/pod/FCGI), [http://www.fastcgi.com/drupal/node/6?q=node/22](http://www.fastcgi.com/drupal/node/6?q=node/22)

# LICENSE

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