From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 230511FF0AA for ; Tue, 22 Sep 2026 12:09:54 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id A8F21214C3; Tue, 22 Sep 2026 12:09:50 +0200 (CEST) From: Hannes Laimer To: pve-devel@lists.proxmox.com Subject: [PATCH proxmox-ve-rs v3 01/38] ve-config: firewall: add a constructor for sctp matches Date: Tue, 22 Sep 2026 12:09:05 +0200 Message-ID: <20260922100943.1151484-2-h.laimer@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260922100943.1151484-1-h.laimer@proxmox.com> References: <20260922100943.1151484-1-h.laimer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1790071785815 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.476 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: YHXQ7EHGN6PSJ4AR5QCVLCFSGPOHEM6P X-Message-ID-Hash: YHXQ7EHGN6PSJ4AR5QCVLCFSGPOHEM6P X-MailFrom: h.laimer@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The tcp and udp matches can already be built from a port pair, while an sctp match is only reachable by parsing rule options. Add the missing constructor so a match can be assembled from parts for every protocol that carries ports. Signed-off-by: Hannes Laimer --- proxmox-ve-config/src/firewall/types/rule_match.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/proxmox-ve-config/src/firewall/types/rule_match.rs b/proxmox-ve-config/src/firewall/types/rule_match.rs index 8e142f7..8e9c0c6 100644 --- a/proxmox-ve-config/src/firewall/types/rule_match.rs +++ b/proxmox-ve-config/src/firewall/types/rule_match.rs @@ -437,6 +437,10 @@ pub struct Sctp { } impl Sctp { + pub fn new(ports: Ports) -> Self { + Self { ports } + } + fn from_options(options: &RuleOptions) -> Result { Ok(Self { ports: Ports::from_options(options)?, -- 2.47.3