in reply to UDP server

You can't set a Listen size when using UDP. It works fine if you use either a TCP protocol, or use UDP and remove the Listen parameter.

--Chris

e-mail jcwren

Replies are listed 'Best First'.
RE: Re: UDP server
by tiny (Beadle) on Jul 11, 2000 at 21:21 UTC
    Darn, so I guess you can't write a UDP server with IO::Socket because the Listen parameter is what switches it into server mode, right? I think I'm going to have to use the plain Socket module. :(