From nobody Sun Apr 28 17:52:41 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1512742635279573.1392394133694; Fri, 8 Dec 2017 06:17:15 -0800 (PST) Received: from localhost ([::1]:37478 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eNJSe-0000a2-Py for importer@patchew.org; Fri, 08 Dec 2017 09:17:08 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40721) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eNJQD-0007Tq-J8 for qemu-devel@nongnu.org; Fri, 08 Dec 2017 09:14:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eNJQC-0002Nh-Cx for qemu-devel@nongnu.org; Fri, 08 Dec 2017 09:14:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47328) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eNJQC-0002MV-6Q for qemu-devel@nongnu.org; Fri, 08 Dec 2017 09:14:36 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id EF73DAC2CD for ; Fri, 8 Dec 2017 14:14:33 +0000 (UTC) Received: from natto.ory.fergeau.eu (dhcp-193-29.cdg.redhat.com [10.32.193.29]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C48AE18C6E for ; Fri, 8 Dec 2017 14:14:33 +0000 (UTC) Received: by natto.ory.fergeau.eu (Postfix, from userid 1000) id 954C261F906; Fri, 8 Dec 2017 15:14:32 +0100 (CET) From: Christophe Fergeau To: qemu-devel@nongnu.org Date: Fri, 8 Dec 2017 15:14:30 +0100 Message-Id: <20171208141430.21169-1-cfergeau@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 08 Dec 2017 14:14:33 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] docs: Document -object tls-creds-x509 priority=xxx X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" This was added in 13f1243, but is missing from qemu-options.hx Signed-off-by: Christophe Fergeau --- qemu-options.hx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/qemu-options.hx b/qemu-options.hx index f11c4ac960..118784ceb7 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -4249,7 +4249,7 @@ expensive operation that consumes random pool entropy= , so it is recommended that a persistent set of parameters be generated upfront and saved. =20 -@item -object tls-creds-x509,id=3D@var{id},endpoint=3D@var{endpoint},dir= =3D@var{/path/to/cred/dir},verify-peer=3D@var{on|off},passwordid=3D@var{id} +@item -object tls-creds-x509,id=3D@var{id},endpoint=3D@var{endpoint},dir= =3D@var{/path/to/cred/dir},priority=3D@var{priority},verify-peer=3D@var{on|= off},passwordid=3D@var{id} =20 Creates a TLS anonymous credentials object, which can be used to provide TLS support on network backends. The @option{id} parameter is a unique @@ -4282,6 +4282,15 @@ version by providing the @var{passwordid} parameter.= This provides the ID of a previously created @code{secret} object containing the password for decryption. =20 +The @var{priority} parameter allows to override the global default +priority used by gnutls. This can be useful if the system administrator +needs to use a weaker set of crypto priorities for QEMU without +potentially forcing the weakness onto all applications. Or conversely +if one wants wants a stronger default for QEMU than for all other +applications, they can do this through this parameter. Its format is +a gnutls priority string as described at +@url{https://gnutls.org/manual/html_node/Priority-Strings.html}. + @item -object filter-buffer,id=3D@var{id},netdev=3D@var{netdevid},interval= =3D@var{t}[,queue=3D@var{all|rx|tx}][,status=3D@var{on|off}] =20 Interval @var{t} can't be 0, this filter batches the packet delivery: all --=20 2.14.3