Variable: erc-server-send-ping-timeout

erc-server-send-ping-timeout is a customizable variable defined in erc-backend.el.gz.

Value

120

Documentation

If the time between ping and response is greater than this, reconnect.

The time is in seconds.

This must be greater than or equal to the value for erc-server-send-ping-interval.

If this is set to nil, never try to reconnect.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(defcustom erc-server-send-ping-timeout 120
  "If the time between ping and response is greater than this, reconnect.
The time is in seconds.

This must be greater than or equal to the value for
`erc-server-send-ping-interval'.

If this is set to nil, never try to reconnect."
  :type '(choice (const :tag "Disabled" nil)
                 (integer :tag "Seconds")))