poe::component::server::simplehttp::connection(3pm) [debian man page]
POE::Component::Server::SimpleHTTP::Connection(3pm) User Contributed Perl Documentation POE::Component::Server::SimpleHTTP::Connection(3pm)NAME
POE::Component::Server::SimpleHTTP::Connection - Stores connection information for SimpleHTTP
SYNOPSIS
use POE::Component::Server::SimpleHTTP::Connection;
my $connection = POE::Component::Server::SimpleHTTP::Connection->new( $socket );
# Print some stuff
print $connection->remote_port;
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 ip in dotted quad format ( 1.1.1.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 local ip in dotted quad format ( 1.1.1.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.
SEE ALSO
POE::Component::Server::SimpleHTTP, POE::Component::Server::SimpleHTTP::Response
AUTHOR
Apocalypse <apocal@cpan.org>
Chris "BinGOs" Williams <chris@bingosnet.co.uk>
COPYRIGHT AND LICENSE
Copyright X Apocalypse and Chris Williams
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl v5.14.2 2011-12-28 POE::Component::Server::SimpleHTTP::Connection(3pm)
Check Out this Related Man Page
POE::Component::Resolver::Sidecar(3pm) User Contributed Perl Documentation POE::Component::Resolver::Sidecar(3pm)NAME
POE::Component::Resolver::Sidecar - delegate subprocess to call getaddrinfo()
VERSION
version 0.920
SYNOPSIS
Used internally by POE::Component::Resolver.
DESCRIPTION
POE::Component::Resolver creates subprocesses to call getaddrinfo() so that the main program doesn't block during that time.
The actual getaddrinfo() calling code is abstracted into this module so it can be run in a separate executable program. This reduces the
memory footprint of forking the entire main process for just getaddrinfo().
It's a strong, useful pattern that other POE::Components have implemented before. POE::Quickie does it generically.
POE::Component::SimpleDBI and POE::Component::EasyDBI do it so their DBI subprocesses are relatively lightweight.
main
The main code to read POE::Component::Resolver requests from STDIN and write getaddrinfo() responses to STDOUT.
SEE ALSO
POE::Component::Generic is one generic implementation of this pattern.
POE::Quickie is another generic implementation of this pattern.
BUGS
None known.
LICENSE
Except where otherwise noted, this distribution is Copyright 2011 by Rocco Caputo. All rights reserved. This distribution is free
software; you may redistribute it and/or modify it under the same terms as Perl itself.
perl v5.14.2 2012-06-03 POE::Component::Resolver::Sidecar(3pm)
Well... finally I took and old SCO Server and it works fine to keep working my ERP, but now I have a "LITTLE" trouble... with the other server we've made a connection trought TinyTerm with a DYNDNS Domain, in my firewall I noticed that there's a RULE establishing that the IP 192.168.0.1 (Server IP... (4 Replies)
Hi community,
I've currently working on SUN Server V490 and I'm connecting with a Serial port (I DON'T HAVE ANY IP CONNECTIVITY)...I need to redirect the graphic interface of Oracle with the dbca command; I know a way with an IP Connectivity ( use a X-Server and then setenv DISPLAY... (7 Replies)
Hi,
Have anyone seen this problem, there is one remote side where their ftp connection to our server will always fail with connection closed by remote host and the second connection will be working.
is this an OS issue or network issue?
Thanks
Robert (4 Replies)
Dear All,
I'm trying to configure the passwordless connection between two servers say Server A and Server B.
My requirement is a passwordless connection from Server A to Server B.
I have done the configuration in both the servers. In Server A its successfull but from Server B its everytime... (7 Replies)
I'm having a problem establishing a console connection between a V240 and a V440. I verified and re verified the connection was in the correct places.
Commands:
# tip hardwire
connected
Nothing happens after that. Other V440's work fine with the receiving the connection. Is there a... (8 Replies)
OS : Solaris sparc
In c program After socket created when I do Connect() it results "Connection refused", but the system is online and I am able to do telnet, ping everything, but it says connection refused.
What would need to correct ? (6 Replies)
Hi,
I will ftp aroung 80 files after connecting to an FTP Server. But after 2 minutes of connection, it is timed out and connection is dying. Server had a 2 minute connection timeout if connection is idle. But my question, Isn't tranfering files not considered as an activity. Is the connection... (7 Replies)
Hi All
I have to design a server socket program.The requirement is Each connection from client will be in different threads.
The challenge is Suppose Server is now connected with two client Client A and client B.They will be in two different thread.
My application requirement is when... (4 Replies)
I am trying to connect to my HP server from remote machine.
It gets connected but once credential are provided the connection is closed.
adroit:/home/seo/hitendra 32 ] telnet myserv1
Trying...
Connected to myserv1.
Escape character is '^]'.
Local flow control on
Telnet TERMINAL-SPEED... (4 Replies)
We have a log file, the format is similar to this:
08/04/2011 05:03:08 Connection Success
08/04/2011 05:13:18 Connection Success
08/04/2011 05:23:28 Connection Fail
08/04/2011 05:33:38 Connection Success
08/04/2011 06:14:18 Connection Success
08/04/2011 06:24:28 Connection Fail
08/04/2011... (6 Replies)
I have a requirement for which I had to connect to a server using FTPS. I have been provided with these,
connection method: FTPS
Server Name
Port for explicit and implicit
Login user
I would like to know the FTPS command/script in order to connect to there server and get a file.
... (5 Replies)
I'm trying to connect from Server A to Server B to transfer files from A to B. I'm using NUID A1 in Server A and NUID A2 in Server B. I have done the following the steps to setup password-less login.
1. Add the public key of A1 in A to the Authorized keys of A2 in B.
2. Add the public key of... (4 Replies)
Hi Team,
I have 2 servers Server-A & Server-B.
Is there any way to test scp connection between Server-A & Server-B without transferring file?
Basically i want to test the availability of scp connection..
Thanks in advance... (6 Replies)