Remove allowInsecure

Remove the deprecated `allowInsecure`
This commit is contained in:
MHSanaei
2026-02-11 18:18:05 +01:00
parent fc6344b840
commit 511adffc5b
6 changed files with 15 additions and 61 deletions

View File

@@ -253,9 +253,6 @@ func (s *SubJsonService) tlsData(tData map[string]any) map[string]any {
tlsData["serverName"] = tData["serverName"]
tlsData["alpn"] = tData["alpn"]
if allowInsecure, ok := tlsClientSettings["allowInsecure"].(bool); ok {
tlsData["allowInsecure"] = allowInsecure
}
if fingerprint, ok := tlsClientSettings["fingerprint"].(string); ok {
tlsData["fingerprint"] = fingerprint
}