mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 13:07:36 +03:00
fix: rename for chronologically accuracy
- Renamed `HelloChrome_107` to `HelloChrome_106_Shuffle` to match the versioning info from https://groups.google.com/a/chromium.org/g/blink-dev/c/zdmNs2rTyVI/m/MAiQwQkwCAAJ
This commit is contained in:
parent
e656c889a8
commit
20a2483e6c
2 changed files with 13 additions and 13 deletions
|
@ -183,7 +183,7 @@ var (
|
||||||
HelloChrome_96 = ClientHelloID{helloChrome, "96", nil}
|
HelloChrome_96 = ClientHelloID{helloChrome, "96", nil}
|
||||||
HelloChrome_100 = ClientHelloID{helloChrome, "100", nil}
|
HelloChrome_100 = ClientHelloID{helloChrome, "100", nil}
|
||||||
HelloChrome_102 = ClientHelloID{helloChrome, "102", nil}
|
HelloChrome_102 = ClientHelloID{helloChrome, "102", nil}
|
||||||
HelloChrome_107 = ClientHelloID{helloChrome, "107", nil} // beta: shuffler enabled
|
HelloChrome_106_Shuffle = ClientHelloID{helloChrome, "106", nil} // beta: shuffler enabled starting from 106
|
||||||
|
|
||||||
HelloIOS_Auto = HelloIOS_14
|
HelloIOS_Auto = HelloIOS_14
|
||||||
HelloIOS_11_1 = ClientHelloID{helloIOS, "111", nil} // legacy "111" means 11.1
|
HelloIOS_11_1 = ClientHelloID{helloIOS, "111", nil} // legacy "111" means 11.1
|
||||||
|
|
|
@ -501,7 +501,7 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||||
&UtlsPaddingExtension{GetPaddingLen: BoringPaddingStyle},
|
&UtlsPaddingExtension{GetPaddingLen: BoringPaddingStyle},
|
||||||
},
|
},
|
||||||
}, nil
|
}, nil
|
||||||
case HelloChrome_107:
|
case HelloChrome_106_Shuffle:
|
||||||
chs, err := utlsIdToSpec(HelloChrome_102)
|
chs, err := utlsIdToSpec(HelloChrome_102)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return chs, err
|
return chs, err
|
||||||
|
@ -1843,7 +1843,7 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func shuffleExtensions(chs ClientHelloSpec) (ClientHelloSpec, error) {
|
func shuffleExtensions(chs ClientHelloSpec) (ClientHelloSpec, error) {
|
||||||
// Shuffle extensions to avoid fingerprinting -- introduced in Chrome 107
|
// Shuffle extensions to avoid fingerprinting -- introduced in Chrome 106
|
||||||
// GREASE, padding will remain in place (if present)
|
// GREASE, padding will remain in place (if present)
|
||||||
|
|
||||||
// Find indexes of GREASE and padding extensions
|
// Find indexes of GREASE and padding extensions
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue