Re: problem with IO::Socket and UDP

2001-04-28 Thread $Bill Luebkert
Jaime Teng wrote: I do have a good book on TCP/IP. Problem is, no Perl samples to follow. Its like trying to learn Perl from a Pascal book. Sockets are sockets. The bigger problem is on Win32 where you don't have signals and such. It forces you into a single method of implementation.

Re: problem with IO::Socket and UDP

2001-04-28 Thread Sisyphus
Hi, I do have a good book on TCP/IP. Problem is, no Perl samples to follow. Its like trying to learn Perl from a Pascal book. Er can anyone provide me with a sample of simple UDP socket scripts as a receiver/server and a sender/client? Thanks. Jaime Hi, I put a number of

Re: problem with IO::Socket and UDP

2001-04-27 Thread Jaime Teng
Hi, How come this keeps on dying on me? my $LISTEN = new IO::Socket::INET(Listen = 10, LocalPort = 1812, Proto = 'udp' ); but if i change Proto = 'udp' into Proto = 'tcp' it runs now why it wont run on udp? regards, Jaime Hi, Remove the 'Listen=10'. I think