Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/self/root/proc/thread-self/root/usr/share/perl5/vendor_perl/FCGI/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/proc/thread-self/root/usr/share/perl5/vendor_perl/FCGI/Client.pm
package FCGI::Client;
use warnings;
use strict;
use 5.008001;

our $VERSION = '0.09';

use Carp;

use FCGI::Client::Connection;
use FCGI::Client::Record;
use FCGI::Client::RecordFactory;

1;
__END__

=head1 NAME

FCGI::Client - client library for fastcgi protocol

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

=head1 DESCRIPTION

FCGI::Client is client library for fastcgi protocol.

=head1 AUTHOR

Tokuhiro Matsuno E<lt>tokuhirom @*(#RJKLFHFSDLJF gmail.comE<gt>

=head1 THANKS TO

peterkeen

=head1 SEE ALSO

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

=head1 LICENSE

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

=cut

Hry