Re: udp server

2009-12-01 Thread Telemachus
On Tue Dec 01 2009 @ 1:09, Rene Schickbauer wrote: > Take a look at > > I highly recommend that you buy the Perl Cookbook, most of these > problems (or rather the solutions for them) for these kind of tasks > are in there ;-) I agree that the Perl Cookbook is an excellent resource. Please don't

RE: udp server

2009-12-01 Thread Yonghua Peng
> Date: Tue, 1 Dec 2009 13:09:08 +0100 > From: rene.schickba...@gmail.com > To: beginners@perl.org > Subject: Re: udp server > > cerr wrote: > > Hi There, > > > > I need a server that's listening on UDP port 5000. > > UDP is quite differe

Re: udp server

2009-12-01 Thread Rene Schickbauer
cerr wrote: Hi There, I need a server that's listening on UDP port 5000. UDP is quite different from TCP (for example, you don't have a real connection, every packet is standalone). Take a look at I highly recommend that you buy the

udp server

2009-11-26 Thread cerr
Hi There, I need a server that's listening on UDP port 5000. I have successfully gotten a TCP client to listen on port 5000: [perl] #!/usr/bin/perl -w # serverfork.pl - a server that forks a child # process to handle client connections use strict; use IO::Socket; use Sys::Hostname; use POSIX qw(:s