Function: erc-open-tls-stream
erc-open-tls-stream is a byte-compiled function defined in erc.el.gz.
Signature
(erc-open-tls-stream NAME BUFFER HOST PORT &rest PARAMETERS)
Documentation
Open an TLS stream to an IRC server.
The process will be given the name NAME, its target buffer will
be BUFFER. HOST and PORT specify the connection target.
PARAMETERS should be a sequence of keywords and values, per
open-network-stream.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-open-tls-stream (name buffer host port &rest parameters)
"Open an TLS stream to an IRC server.
The process will be given the name NAME, its target buffer will
be BUFFER. HOST and PORT specify the connection target.
PARAMETERS should be a sequence of keywords and values, per
`open-network-stream'."
(let ((p (plist-put parameters :type 'tls))
args)
(unless (plist-member p :nowait)
(setq p (plist-put p :nowait t)))
(setq args `(,name ,buffer ,host ,port ,@p))
(apply #'open-network-stream args)))