From: Nate Smith Date: 2006-03-10T15:10:54+09:00 Subject: Control-c hangs TCPSocket write Hello, I created a server, accepted a connection via telnet, and if the client sends a control-c, the TCPSocket hangs. It can still read data, but writing to it produces no output on the client side. Here's the code: server = TCPServer.new( '127.0.0.1', 31337 ) socket = server.accept # now client (via telnet), sends control-c socket.print "test" # <-- produces no output on client Anyone know what's up? I checked for exception throws and there are none, and the server side keeps running normally, besides this. Nate