luci: add more fingerprints to xray (#2264)

This commit is contained in:
Gzxhwq 2023-02-03 01:18:33 +08:00 committed by sbwml
parent 2b0b65398d
commit 690b84f1a2

View File

@ -578,11 +578,17 @@ tls_allowInsecure.default = "0"
tls_allowInsecure:depends("tls", true) tls_allowInsecure:depends("tls", true)
tls_allowInsecure:depends("type", "Hysteria") tls_allowInsecure:depends("type", "Hysteria")
xray_fingerprint = s:option(ListValue, "xray_fingerprint", translate("Finger Print")) xray_fingerprint = s:option(Value, "xray_fingerprint", translate("Finger Print"))
xray_fingerprint:value("disable", translate("Disable")) xray_fingerprint:value("disable", translate("Disable"))
xray_fingerprint:value("chrome") xray_fingerprint:value("chrome")
xray_fingerprint:value("firefox") xray_fingerprint:value("firefox")
xray_fingerprint:value("safari") xray_fingerprint:value("safari")
xray_fingerprint:value("ios")
xray_fingerprint:value("android")
xray_fingerprint:value("edge")
xray_fingerprint:value("360")
xray_fingerprint:value("qq")
xray_fingerprint:value("random")
xray_fingerprint:value("randomized") xray_fingerprint:value("randomized")
xray_fingerprint.default = "disable" xray_fingerprint.default = "disable"
xray_fingerprint:depends({ type = "Xray", tls = true, xtls = false }) xray_fingerprint:depends({ type = "Xray", tls = true, xtls = false })