in reply to Creating a TCP listener

Leaner and more robust?

Sure, look at Net::Server. All the real work is done for you, so you can just focus on the tasks your server needs to solve.

-Paul

Replies are listed 'Best First'.
Re^2: Creating a TCP listener
by gokuraku (Monk) on Jun 16, 2008 at 20:00 UTC
    Now that is some cool stuff. I started my server/listener with the Cookbook since it has basic TCP Servers and Clients in there. As I started looking at my requirements, such as IPv6, looping and future functionality I thought to keep it simple and understand it first. That's worked out well, and it looks like that Network Programming With Perl book will help me out in the future; I'll check on that one. I'll take a look at Net::Server and start playing around with it, and IPv6, and see what I can get to next.

    Thanks!