Function: rcirc-handler-AUTHENTICATE

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

Signature

(rcirc-handler-AUTHENTICATE PROCESS CMD ARGS TEXT)

Documentation

Respond to authentication request.

PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-AUTHENTICATE (process _cmd _args _text)
  "Respond to authentication request.
PROCESS is the process object for the current connection."
  (rcirc-send-string
   process
   "AUTHENTICATE"
   (base64-encode-string
    ;; use connection user-name
    (concat "\0" (nth 3 rcirc-connection-info)
            "\0" (rcirc-get-server-password rcirc-server)))))