in reply to Re: Sharing sockets between threadsin thread Sharing sockets between threads
I'm sure there is a backtracking trail you could go thru, via some socket utility, like socklist, but I think your best bet is to just store the info in a hash, like
%client; $client{$id}{$sock} = $socket; $client{$id}{'fileno'} = fileno( $socket ); [download]