module OpenSSL::Buffering

def each(eol=$/)

def each(eol=$/)
  while line = self.gets(eol)
    yield line
  end
end