Function: sasl-make-client
sasl-make-client is a byte-compiled function defined in sasl.el.gz.
Signature
(sasl-make-client MECHANISM NAME SERVICE SERVER)
Documentation
Return a newly allocated SASL client.
NAME is name of the authorization. SERVICE is name of the service desired. SERVER is the fully qualified host name of the server to authenticate to.
Source Code
;; Defined in /usr/src/emacs/lisp/net/sasl.el.gz
;;; @ SASL client
;;;
(defun sasl-make-client (mechanism name service server)
"Return a newly allocated SASL client.
NAME is name of the authorization. SERVICE is name of the service desired.
SERVER is the fully qualified host name of the server to authenticate to."
(vector mechanism name service server (make-symbol "sasl-client-properties")))