# File lib/net/ssh/transport/packet_stream.rb, line 67
    def available_for_read?
      result = IO.select([self], nil, nil, 0)
      result && result.first.any?
    end