From 2f139af2d1950a9821e0d5b8df15212e40f0a567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 12 May 2026 15:01:49 +0800 Subject: [PATCH] Fix naive inbound close --- protocol/naive/inbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/naive/inbound.go b/protocol/naive/inbound.go index 5613f196..41f41798 100644 --- a/protocol/naive/inbound.go +++ b/protocol/naive/inbound.go @@ -140,7 +140,7 @@ func (n *Inbound) Start(stage adapter.StartStage) error { func (n *Inbound) Close() error { return common.Close( - &n.listener, + n.listener, common.PtrOrNil(n.httpServer), n.h3Server, n.tlsConfig,