Function: rcirc-handler-PING

rcirc-handler-PING is a byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-handler-PING PROCESS SENDER ARGS TEXT)

Documentation

Respond to a PING with a PONG.

ARGS should have the form (MESSAGE). MESSAGE is relayed back to the server. PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-PING (process _sender args _text)
  "Respond to a PING with a PONG.
ARGS should have the form (MESSAGE).  MESSAGE is relayed back to
the server.  PROCESS is the process object for the current
connection."
  (rcirc-send-string process "PONG" : (car args)))