On Mon, Jun 10, 2002 at 03:17:48PM -0400, Ron Powell wrote: > I have a server listening on a certain port. I need to send and receive > characters (strings) via a UDP connection. Which module is the best to use? > I found a bit of info on perldoc.org referencing IO::Socket. I just want to > make sure there are no better choices.
What are your criteria for "best" and "better"? IO::Socket is one way; it's fairly simple, a little easier to use than the base socket calls, but still a bit low-level. The base socket calls are similar to IO::Socket, but with more setup involved. POE is a good way of dealing with sockets; it responds with events, rather than explicit loops, and has a bit of a learning curve. Those are just a few of the possibilities. Michael -- Administrator www.shoebox.net Programmer, System Administrator www.gallanttech.com -- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]