Compare commits

...
7 Commits
Author SHA1 Message Date
Meo597 93ca624bb5 Revert "more outbounds"
This reverts commit f30526a60f.
2026-07-08 22:44:25 +08:00
Meo597 dc7ae49fab Revert "remove IndependentCancelCtx"
This reverts commit b53f8b56a4.
2026-07-08 22:44:21 +08:00
Meo597 95c960977b Revert "refactor (remove TimeoutOnly)"
This reverts commit 723ef2b8e6.
2026-07-08 22:44:16 +08:00
Meo597 723ef2b8e6 refactor (remove TimeoutOnly) 2026-07-08 21:44:22 +08:00
Meo597 b53f8b56a4 remove IndependentCancelCtx 2026-07-08 20:56:21 +08:00
Meo597 f30526a60f more outbounds 2026-07-04 01:20:27 +08:00
Meo597 4dd45c8417 DNS outbound: Fix own-link detection for XUDP sessions 2026-07-03 23:54:58 +08:00
+1 -1
View File
@@ -215,7 +215,7 @@ func (h *Handler) Process(ctx context.Context, link *transport.Link, d internet.
}
if session.TimeoutOnlyFromContext(ctx) {
ctx = context.Background()
ctx = context.WithoutCancel(ctx)
}
ctx, cancel := context.WithCancel(ctx)