in reply to Re: Using select() on only one socket
in thread Using select() on only one socket

Problem solved!

:)
I didn't use the handles returned from can_read(). Actually I thought that I can use the initial $sock filehandle after the select statement... When I use the handle returned from can_read, it works perfectly :)
Thanks.
  • Comment on Re^2: Using select() on only one socket

Replies are listed 'Best First'.
Re^3: Using select() on only one socket
by Crackers2 (Parson) on Sep 04, 2005 at 15:18 UTC

    I know you already got a solution, but...

    Could the real problem be because your example used $sock when you create the socket and add it to the select, but $socket on the line where you try to read it ? (use strict should catch this though, so perhaps it's just a typo you made while entering the example)