[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master ec39f669f90: Handle ':noquery' in 'open-gnutls-stream'
From: |
Robert Pluim |
Subject: |
master ec39f669f90: Handle ':noquery' in 'open-gnutls-stream' |
Date: |
Sun, 22 Dec 2024 06:39:01 -0500 (EST) |
branch: master
commit ec39f669f902143a68a99fb42dd05716a27736be
Author: Augusto Stoffel <arstoffel@gmail.com>
Commit: Robert Pluim <rpluim@gmail.com>
Handle ':noquery' in 'open-gnutls-stream'
* lisp/net/gnutls.el (open-gnutls-stream): Extract and use
':noquery' keyword. (Bug#74193).
---
lisp/net/gnutls.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lisp/net/gnutls.el b/lisp/net/gnutls.el
index b5fb4d47d57..2261ccc7e30 100644
--- a/lisp/net/gnutls.el
+++ b/lisp/net/gnutls.el
@@ -166,7 +166,7 @@ Third arg HOST is the name of the host to connect to, or
its IP address.
Fourth arg SERVICE is the name of the service desired, or an integer
specifying a port number to connect to.
Fifth arg PARAMETERS is an optional list of keyword/value pairs.
-Only :client-certificate, :nowait, and :coding keywords are
+Only :client-certificate, :nowait, :noquery, and :coding keywords are
recognized, and have the same meaning as for
`open-network-stream'.
For historical reasons PARAMETERS can also be a symbol, which is
@@ -197,9 +197,11 @@ trust and key files, and priority string."
(cert (network-stream-certificate host service parameters))
(keylist (and cert (list cert)))
(nowait (plist-get parameters :nowait))
+ (noquery (plist-get parameters :noquery))
(process (open-network-stream
name buffer host service
:nowait nowait
+ :noquery noquery
:tls-parameters
(and nowait
(cons 'gnutls-x509pki
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master ec39f669f90: Handle ':noquery' in 'open-gnutls-stream',
Robert Pluim <=