From b79d77197f17778a9a63a9b048bd22194418007b Mon Sep 17 00:00:00 2001 From: aamine Date: Wed, 18 Aug 2004 14:44:41 +0000 Subject: * lib/net/protocol.rb (rbuf_fill): OpenSSL::SSLSocket has its own buffer, select(2) might not work. [ruby-dev:24072] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/protocol.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/net') diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb index 1ba18d816b..37b4269f29 100644 --- a/lib/net/protocol.rb +++ b/lib/net/protocol.rb @@ -129,10 +129,9 @@ module Net # :nodoc: private def rbuf_fill - until IO.select([@io], nil, nil, @read_timeout) - raise TimeoutError, "socket read timeout (#{@read_timeout} sec)" - end - @rbuf << @io.sysread(1024) + timeout(@read_timeout) { + @rbuf << @io.sysread(1024) + } end def rbuf_consume(len) -- cgit v1.2.3