Variable: eudc-protocol
eudc-protocol is a customizable variable defined in eudc-vars.el.gz.
Value
nil
Documentation
The directory protocol to use to query the server.
Supported protocols are specified by eudc-supported-protocols.
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc-vars.el.gz
(defcustom eudc-protocol nil
"The directory protocol to use to query the server.
Supported protocols are specified by `eudc-supported-protocols'."
:type `(choice :menu-tag "Protocol"
,@(mapcar (lambda (s)
(list 'const ':tag (symbol-name s) s))
eudc-known-protocols)
(const :tag "None" nil)))