From 6c2b48d7de69fb124e5851565bec085cd58a4d82 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sat, 19 Jul 2025 00:36:54 +0200 Subject: [PATCH] chore: disable DTLS --- src/controllers/api/loginController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/loginController.ts b/src/controllers/api/loginController.ts index fabc4945..1de6104f 100644 --- a/src/controllers/api/loginController.ts +++ b/src/controllers/api/loginController.ts @@ -130,7 +130,7 @@ const createLoginResponse = ( resp.Groups = []; } if (version_compare(buildLabel, "2021.04.13.19.58") >= 0) { - resp.DTLS = 99; + resp.DTLS = 0; // bit 0 enables DTLS. if enabled, additional bits can be set, e.g. bit 2 to enable logging. on live, the value is 99. } if (version_compare(buildLabel, "2022.04.29.12.53") >= 0) { resp.ClientType = account.ClientType; -- 2.47.2