# File lib/net/ssh/connection/keepalive.rb, line 26
  def should_send?
    return false unless enabled?
    return true unless @last_keepalive_sent_at
    Time.now - @last_keepalive_sent_at >= interval
  end