# File lib/net/ssh/util/buffer.rb, line 93
        def read_int64
          hi = read_long
          lo = read_long
          return ( hi << 32 ) + lo
        end