[Sovled!] RE: UDP Client {out of my comfort area}

2008-02-21 Thread bigal
print "Comms Outage... Trying Again in $rslt seconds \n"; sleep (1); } eval {$sock->send($initialmsg) or die "INITIALMSG Send Failed... $!"; }; } exit; --end-of-solution-snip-- PS: The select is a pretty tight loop in reality that I don&#x

UDP Client {out of my comfort area}

2008-02-20 Thread BigAl
sub sleep_wait { print "Comms Appear To be Down... will try reseting comms...\n"; my $xctr; my $rslt; for (1...10) { $xctr++; $rslt = $xctr - 10 ; print "Comms Outage... Trying Again in $rslt seconds \n"; sleep (1); } } -