module OpenSSL::Buffering

def readlines(eol=$/)

def readlines(eol=$/)
  ary = []
  while line = self.gets(eol)
    ary << line
  end
  ary
end