Are there any "gotchas" with respect to 'io' events and sockets?

    $watch_in = IO::Socket::INET->new(
                                      Proto => 'udp',
                                      LocalPort => $cfg->socket_nbr,
                                      ReuseAddr => 1,
                                     )
      or logcroak "socket: $@";
    $events{watchdog} = Event->io(
                                  cb => \&checkin,
                                  fd => $watch_in,
                                  poll => 'r',
                                 );

I don't seem to get any events on this socket.

-- 
Jeff Boes                                             vox 616.226.9550
Database Engineer                                     fax 616.349.9076
Nexcerpt, Inc.                                      [EMAIL PROTECTED]

Reply via email to