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