We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d447c commit 93ca185Copy full SHA for 93ca185
common/convert/converter.go
@@ -588,6 +588,8 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) {
588
}
589
insecure, sni := query.Get("insecure"), query.Get("sni")
590
insecureBool := insecure == "1"
591
+ fingerprint := query.Get("hpkp")
592
+
593
remarks := link.Fragment
594
if remarks == "" {
595
remarks = fmt.Sprintf("%s:%s", server, portStr)
@@ -601,6 +603,7 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) {
601
603
anytls["username"] = username
602
604
anytls["password"] = password
605
anytls["sni"] = sni
606
+ anytls["fingerprint"] = fingerprint
607
anytls["skip-cert-verify"] = insecureBool
608
anytls["udp"] = true
609
0 commit comments