in reply to Re: Re: UDP socket questions
in thread UDP socket questions
use IO::Socket::INET; $sock_r = IO::Socket::INET->new(Proto => "udp", LocalAddr => "127.1") or die "can't connect socket to port: $!"; $host_port = $sock_r->sockport; print "Listening on host_port $host_port\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: UDP socket questions
by sbrandt (Initiate) on Mar 13, 2003 at 21:40 UTC |