From 9eafc7fc62b10528df821cdfbf4e4e8f122f4b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Mon, 10 Feb 2025 15:08:18 +0800 Subject: [PATCH] udpnat2: Fix crash --- common/udpnat2/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/udpnat2/service.go b/common/udpnat2/service.go index 1402211..f658fa2 100644 --- a/common/udpnat2/service.go +++ b/common/udpnat2/service.go @@ -27,7 +27,7 @@ func New(handler N.UDPConnectionHandlerEx, prepare PrepareFunc, timeout time.Dur } var cache freelru.Cache[netip.AddrPort, *natConn] if !shared { - cache = common.Must1(freelru.New[netip.AddrPort, *natConn](1024, maphash.NewHasher[netip.AddrPort]().Hash32)) + cache = common.Must1(freelru.NewSynced[netip.AddrPort, *natConn](1024, maphash.NewHasher[netip.AddrPort]().Hash32)) } else { cache = common.Must1(freelru.NewSharded[netip.AddrPort, *natConn](1024, maphash.NewHasher[netip.AddrPort]().Hash32)) }