mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-30 01:08:33 +00:00
REALITY, TLS config: Set "chrome" as the default fingerprint
Other VLESS implementations should follow this change.
This commit is contained in:
parent
5836afc41f
commit
96fb680d45
2 changed files with 9 additions and 10 deletions
|
@ -165,7 +165,7 @@ func init() {
|
|||
|
||||
func GetFingerprint(name string) (fingerprint *utls.ClientHelloID) {
|
||||
if name == "" {
|
||||
return
|
||||
return &utls.HelloChrome_Auto
|
||||
}
|
||||
if fingerprint = PresetFingerprints[name]; fingerprint != nil {
|
||||
return
|
||||
|
@ -191,6 +191,7 @@ var PresetFingerprints = map[string]*utls.ClientHelloID{
|
|||
"qq": &utls.HelloQQ_Auto,
|
||||
"random": nil,
|
||||
"randomized": nil,
|
||||
"unsafe": nil,
|
||||
}
|
||||
|
||||
var ModernFingerprints = map[string]*utls.ClientHelloID{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue