Function: rcirc-handler-900

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

Signature

(rcirc-handler-900 PROCESS SENDER ARGS TEXT)

Documentation

Respond to a successful authentication response.

SENDER is passed on to rcirc-handler-generic. PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-900 (process sender args _text)
  "Respond to a successful authentication response.
SENDER is passed on to `rcirc-handler-generic'.  PROCESS is the
process object for the current connection."
  (rcirc-handler-generic process "900" sender args nil)
  (when (not rcirc-finished-sasl)
    (setq-local rcirc-finished-sasl t)
    (rcirc-send-string process "CAP" "END"))
  (rcirc-join-channels-post-auth process))