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

POE::Component::Server::SimpleHTTP::Connection - Stores connection information for SimpleHTTP

Author

       Apocalypse <APOCAL@cpan.org>

Description

               This module simply holds some information from a SimpleHTTP connection.

   METHODS
               my $connection = POE::Component::Server::SimpleHTTP::Connection->new( $socket );

               $connection->remote_ip();       # Returns remote address as a string ( 1.1.1.1 or 2000::1 )
               $connection->remote_port();     # Returns remote port
               $connection->remote_addr();     # Returns true remote address, consult the L<Socket> POD
               $connection->local_addr();      # Returns true local address, same as above
               $connection->local_ip();        # Returns remote address as a string ( 1.1.1.1 or 2000::1 )
               $connection->local_port();      # Returns local port
               $connection->dead();            # Returns a boolean value whether the socket is closed or not
               $connection->ssl();             # Returns a boolean value whether the socket is SSLified or not
               $connection->sslcipher();       # Returns the SSL Cipher type or undef if not SSL
               $connection->ID();          # unique ID of this connection

   EXPORT
       Nothing.

Name

       POE::Component::Server::SimpleHTTP::Connection - Stores connection information for SimpleHTTP

See Also

       POE::Component::Server::SimpleHTTP, POE::Component::Server::SimpleHTTP::Response

Synopsis

               use POE::Component::Server::SimpleHTTP::Connection;
               my $connection = POE::Component::Server::SimpleHTTP::Connection->new( $socket );

               # Print some stuff
               print $connection->remote_port;

Version

       version 2.30

See Also