Since you only want the connection status, you probably should use the
POE::Wheel::SocketFactory instead of the component (which is built on top of SocketFactory). Something like the following:(
not tested, not even syntax)
use strict;
use POE;
use POE::Wheel::SocketFactory;
my $task = [
{ name => 'www.example.com', proto => 'tcp', port => 80 },
{ name => 'smtp.example.com', proto => 'tcp', port => 25 },
{ name => 'ns.example.com', proto => 'udp', port => 53 },
];
for my $t( @$task ) {
POE::Wheel::SocketFactory->new(
RemoteAddress => $t->{host},
RemotePort => $t->{port},
SocketProtocol => $t->{proto},
SuccessEvent => sub {
print "$t->{host}:$t->{proto}:$t->{port} up\n";
$poe_kernel->yield( 'shutdown' );
},
FailureEvent => sub { print "$t->{host}:$t->{proto}:$t->{por
+t} down\n" },
);
}
$poe_kernel->run();
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.