From 6f4e1986d8eab0bba284fea3f33db480f73adfec Mon Sep 17 00:00:00 2001 From: WilliamPeterMatthew Date: Sun, 1 Jun 2025 22:06:37 +0800 Subject: [PATCH] try to fix --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 6e54711..9aa75a6 100644 --- a/app.py +++ b/app.py @@ -11,7 +11,7 @@ match = re.search(r'(\d+)\.(\d+)', kernel_ver) cmv, csv = (int(match.group(1)), int(match.group(2))) if match else (0, 0) TFO = "" if cmv >= 3 and csv > 7: - tfo = "--tcp-fast-open" + TFO = "--tcp-fast-open" ARGS=os.getenv("ARGS","")