From 0c0c10b5d3236796bd3832a6813223d6dc7d0bb1 Mon Sep 17 00:00:00 2001 From: Leadaxe <247031499+Leadaxe@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:27:23 +0300 Subject: [PATCH] docs(010): use rename-stable SPECS folder ref in fix comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sing-box-lx is dropping type/status from SPEC folder names (NNN-T-S-NAME → NNN-NAME), so the -B-C- tail goes stale. Point at the new stable folder name SPECS/010-WG_ENDPOINT_GRO_SPLIT_BRAIN. Comment-only, no behavior change. --- conn/controlfns_linux.go | 2 +- conn/features_linux.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conn/controlfns_linux.go b/conn/controlfns_linux.go index 8c8b652..ff591f1 100644 --- a/conn/controlfns_linux.go +++ b/conn/controlfns_linux.go @@ -65,7 +65,7 @@ func init() { // coalesced super-packet is never split and corrupts the WG stream // (download dies). Belt-and-suspenders with the rxOffload guard in // features_linux.go. TX/GSO untouched. - // See SPECS/010-B-C-WG_ENDPOINT_GRO_SPLIT_BRAIN. + // See SPECS/010-WG_ENDPOINT_GRO_SPLIT_BRAIN. if runtime.GOOS == "android" { return nil } diff --git a/conn/features_linux.go b/conn/features_linux.go index 7d12890..69dd2f4 100644 --- a/conn/features_linux.go +++ b/conn/features_linux.go @@ -35,7 +35,7 @@ func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) { // GOOS=="linux") is dead there — a coalesced GRO super-packet would be read // as one datagram and corrupt the WG transport stream, killing download. // Confirmed on device (CPH2411/Android-15: rxOffload=true, dispatch=single). - // TX is left untouched. See SPECS/010-B-C-WG_ENDPOINT_GRO_SPLIT_BRAIN. + // TX is left untouched. See SPECS/010-WG_ENDPOINT_GRO_SPLIT_BRAIN. if runtime.GOOS == "android" { return }