Function: rcirc-ctcp-sender-PING

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

Signature

(rcirc-ctcp-sender-PING PROCESS TARGET REQUEST)

Documentation

Send a CTCP PING message to TARGET.

PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-ctcp-sender-PING (process target _request)
  "Send a CTCP PING message to TARGET.
PROCESS is the process object for the current connection."
  (let ((timestamp (format-time-string "%s")))
    (rcirc-send-ctcp process target "PING" timestamp)))