aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/emacs-gnutls.texi9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/misc/emacs-gnutls.texi b/doc/misc/emacs-gnutls.texi
index 1db6c517de8..75fd97c7c74 100644
--- a/doc/misc/emacs-gnutls.texi
+++ b/doc/misc/emacs-gnutls.texi
@@ -181,9 +181,6 @@ syntax are the same as those given to @code{open-network-stream}
181Manual}). The connection process is called @var{name} (made unique if 181Manual}). The connection process is called @var{name} (made unique if
182necessary). This function returns the connection process. 182necessary). This function returns the connection process.
183 183
184If called with @var{nowait}, the process is returned immediately
185(before connecting to the server).
186
187@lisp 184@lisp
188;; open a HTTPS connection 185;; open a HTTPS connection
189(open-gnutls-stream "tls" "tls-buffer" "yourserver.com" "https") 186(open-gnutls-stream "tls" "tls-buffer" "yourserver.com" "https")
@@ -194,6 +191,12 @@ If called with @var{nowait}, the process is returned immediately
194 191
195@end defun 192@end defun
196 193
194@findex gnutls-asynchronous-parameters
195If called with @var{nowait}, the process is returned immediately
196(before connecting to the server). In that case, the process object
197is told what parameters to use when negotiating the connection
198by using the @code{gnutls-asynchronous-parameters} function.
199
197The function @code{gnutls-negotiate} is not generally useful and it 200The function @code{gnutls-negotiate} is not generally useful and it
198may change as needed, so please see @file{gnutls.el} for the details. 201may change as needed, so please see @file{gnutls.el} for the details.
199 202