Search Results

3
votes

Recovering from a broken TCP socket in Ruby when in gets()

You can use select to see whether you can safely gets from the socket, see following implementation of a TCPServer using this technique. require 'socket' host, port = 'localhost', …