fill_rbuff()
Fills the buffer from the underlying SSLSocket
# File ext/openssl/lib/openssl/buffering.rb, line 58 def fill_rbuff begin @rbuffer << self.sysread(BLOCK_SIZE) rescue Errno::EAGAIN retry rescue EOFError @eof = true end end