From 20226b91c9b77147d28d836c80579e82cab115ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 12 Mar 2023 21:53:45 +0800 Subject: [PATCH] Fix system stack not passing context to handler --- system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system.go b/system.go index 3fe4216..ff8d06c 100644 --- a/system.go +++ b/system.go @@ -194,7 +194,7 @@ func (s *System) acceptLoop(listener net.Listener) { } } go func() { - s.handler.NewConnection(context.Background(), conn, M.Metadata{ + s.handler.NewConnection(s.ctx, conn, M.Metadata{ Source: M.SocksaddrFromNetIP(session.Source), Destination: destination, })