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