in reply to Re: IO::Socket::INET -- Jettero verses non-blocking in windows
in thread IO::Socket::INET -- jettero verses non-blocking in windows
I'm trying to just make a separate function for OSen without non-blocking sockets.
In my cool version, I'm doing this:
my $msg = ""; while( my $portaddr = recv($this->{in}, $msg, 1024, 0) ) { my ($portno, $ipaddr) = sockaddr_in($portaddr); my $ip = inet_ntoa($ipaddr); push @msgs, [$ip, $this->_transform($msg)]; }
It's intercepting UDP broadcasts, which I'm also new to, and I'm not sure where to get the ipaddr of the source using the vec/select while loop -- which is fascinating btw.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: IO::Socket::INET -- Jettero verses non-blocking in windows
by tachyon (Chancellor) on Jul 30, 2004 at 15:43 UTC | |
by jettero (Monsignor) on Jul 30, 2004 at 15:57 UTC | |
by tachyon (Chancellor) on Jul 30, 2004 at 16:14 UTC | |
by jettero (Monsignor) on Jul 30, 2004 at 16:24 UTC | |
by tachyon (Chancellor) on Jul 30, 2004 at 16:26 UTC |