I have a small app that queries a large (~3000) list of UDP servers, and parses thier results to be displayed in a tk window. On my local machine (Linux) it works just fine. Several other people who have tried it, however, cannot seem to get it to work. That is, it sends out the packets, but receives and parses only a few replys. I can't seem to figure it out. The general idea of what I am doing...
sub CheckServers { # go down the list of servers # and sent a packet to each # one to request info my $socket = IO::Socket::INET->new( Proto => 'udp', Type => SOCK_DGRAM); my $select = IO::Select->new($socket); my %responses; CHECK_SERVERS: while (@servers){ my $toread = $select; my $towrite = @servers ? $select : undef; my ($readref, $writeref) = IO::Select->select( $toread,$towrite,undef,$timeout ); last unless ($readref || $writeref); foreach my $sock ( @{ $writeref } ) { $sent++; my $server = shift @servers; my ($ip, $port) = split (/.:/, $server); next unless $port && $ip; my $paddr = sockaddr_in($port, inet_aton($ip)); my $ret = $sock->send($HOST_QUERY, 0, $paddr) || die "send: $!"; $waiting{$ip} = Time::HiRes::time; } foreach my $sock ( @{ $readref } ) { $rcvd++; my $rc = $sock->recv($reply, 10_000); next unless $rc; my ($port, $addr) = sockaddr_in($rc); my $ip = inet_ntoa($addr); if ( $reply ) { ... do stuff ... } next CHECK_SERVERS; } } }

In reply to Problems with select() on socket by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.