in reply to Re^2: How to count the number of pending clients in socket queue?
in thread How to count the number of pending clients in socket queue?

Greetings, mrbark.

As it appears you're on a *NIX box. Aside from poll. The man pages for ifconfig, lsof, netstat, etc. Might give you some interesting information, that you could ask Perl to provide you in informative, and useful ways. :)

HTH

--Chris

#!/usr/bin/perl -Tw
use Perl::Always or die;
my $perl_version = (5.12.5);
print $perl_version;
  • Comment on Re^3: How to count the number of pending clients in socket queue?