That was exactly it!
You know in the back of my mind I had this nagging suspicion it was lack of the return\line feed.
Its been so long since I've coded in Perl (or not enough coffee), I just couldn't put it into a solidly formed idea, or find it jumping out at me in the docs.
Heres the working code. Thanks.
#!/usr/bin/perl -w
use strict;
use POE qw(Component::Server::TCP);
POE::Component::Server::TCP->new(
Alias => 'linda_server',
Port => 2000,
Concurrency => 5,
ClientConnected => \&event_tcp_conn,
ClientDisconnected => \&event_tcp_disconn,
ClientInput => \&event_tcp_incoming,
ClientFilter => [ "POE::Filter::Line", Literal => chr(4) ],
);
print "Starting POE Kernel.\n";
$poe_kernel->run();
sub event_tcp_conn {
my ($heap,$kernel) = @_[HEAP, KERNEL];
print "Connection: $heap->{remote_ip} Accepted\n";
}
sub event_tcp_disconn {
my ($heap,$kernel) = @_[HEAP, KERNEL];
print "Disconnect: $heap->{remote_ip}.\n";
}
sub event_tcp_incoming {
my ($heap, $kernel, $input) = @_[HEAP, KERNEL, ARG0];
print "Received: $heap->{remote_ip} : $input\n";
}
__END__
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.