From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202602 header.b=ncHxF/6O; dkim-atps=neutral Received: from mail.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id DE18F5A0272 for ; Wed, 11 Mar 2026 13:03:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202602; t=1773230596; bh=ZQW1HtoAWhqtewvKlqfgKsJvAELFfMsO4OhdhzF132Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ncHxF/6O/V0s6Fqt0ylC28m21ZTzpSl0ssag45zE4zMkJw+MeG5dMO0P7WStANU6c AEZdDWSIT6xhVedb2EVVMy5h3xop2zmZV1NILOJkiklDPaSOKyJoLVVDxmY6vGGEyG u4SP3ZOHasbuEnNC+yBiBK0xFoxom3pVElDbruBUrj7mFbVE7Zpz1+0KajUmGQb4kM HnCA4m2x9gEh/fC5nXsROiRC1eRY/XsIcpn2KFgL8kqLDa83xDJZp0Rqp+7Ij33WzV ePWMgimSXHkNu9XgqKlIDs5Z1DSBM1tYIyrufZldRHwj2pc1sMV+8wsOSDPGwEr+R/ AqwXtmDWAzERA== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4fW8XN1YNgz4wF0; Wed, 11 Mar 2026 23:03:16 +1100 (AEDT) From: David Gibson To: passt-dev@passt.top, Stefano Brivio Subject: [PATCH v2 2/9] tcp: Remove stale description of port_to_tap field Date: Wed, 11 Mar 2026 23:03:07 +1100 Message-ID: <20260311120314.933546-3-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260311120314.933546-1-david@gibson.dropbear.id.au> References: <20260311120314.933546-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: LS4HBAJQROVYXDY4XSZT6H5CXSRL6HWV X-Message-ID-Hash: LS4HBAJQROVYXDY4XSZT6H5CXSRL6HWV X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: This field was removed in 163dc5f18899 ("Consolidate port forwarding configuration into a common structure"), but the corresponding comment describing it was not. Fix the oversight. Fixes: 163dc5f18899 ("Consolidate port forwarding configuration into a common structure") Signed-off-by: David Gibson --- tcp.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tcp.h b/tcp.h index 384974d1..c9455e85 100644 --- a/tcp.h +++ b/tcp.h @@ -38,7 +38,6 @@ extern bool peek_offset_cap; /** * struct tcp_ctx - Execution context for TCP routines - * @port_to_tap: Ports bound host-side, packets to tap or spliced * @fwd_in: Port forwarding configuration for inbound packets * @fwd_out: Port forwarding configuration for outbound packets * @timer_run: Timestamp of most recent timer run -- 2.53.0