mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17: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
22
u_common.go
22
u_common.go
|
@ -173,17 +173,17 @@ var (
|
|||
HelloFirefox_102 = ClientHelloID{helloFirefox, "102", nil}
|
||||
HelloFirefox_105 = ClientHelloID{helloFirefox, "105", nil}
|
||||
|
||||
HelloChrome_Auto = HelloChrome_102
|
||||
HelloChrome_58 = ClientHelloID{helloChrome, "58", nil}
|
||||
HelloChrome_62 = ClientHelloID{helloChrome, "62", nil}
|
||||
HelloChrome_70 = ClientHelloID{helloChrome, "70", nil}
|
||||
HelloChrome_72 = ClientHelloID{helloChrome, "72", nil}
|
||||
HelloChrome_83 = ClientHelloID{helloChrome, "83", nil}
|
||||
HelloChrome_87 = ClientHelloID{helloChrome, "87", nil}
|
||||
HelloChrome_96 = ClientHelloID{helloChrome, "96", nil}
|
||||
HelloChrome_100 = ClientHelloID{helloChrome, "100", nil}
|
||||
HelloChrome_102 = ClientHelloID{helloChrome, "102", nil}
|
||||
HelloChrome_107 = ClientHelloID{helloChrome, "107", nil} // beta: shuffler enabled
|
||||
HelloChrome_Auto = HelloChrome_102
|
||||
HelloChrome_58 = ClientHelloID{helloChrome, "58", nil}
|
||||
HelloChrome_62 = ClientHelloID{helloChrome, "62", nil}
|
||||
HelloChrome_70 = ClientHelloID{helloChrome, "70", nil}
|
||||
HelloChrome_72 = ClientHelloID{helloChrome, "72", nil}
|
||||
HelloChrome_83 = ClientHelloID{helloChrome, "83", nil}
|
||||
HelloChrome_87 = ClientHelloID{helloChrome, "87", nil}
|
||||
HelloChrome_96 = ClientHelloID{helloChrome, "96", nil}
|
||||
HelloChrome_100 = ClientHelloID{helloChrome, "100", nil}
|
||||
HelloChrome_102 = ClientHelloID{helloChrome, "102", nil}
|
||||
HelloChrome_106_Shuffle = ClientHelloID{helloChrome, "106", nil} // beta: shuffler enabled starting from 106
|
||||
|
||||
HelloIOS_Auto = HelloIOS_14
|
||||
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},
|
||||
},
|
||||
}, nil
|
||||
case HelloChrome_107:
|
||||
case HelloChrome_106_Shuffle:
|
||||
chs, err := utlsIdToSpec(HelloChrome_102)
|
||||
if err != nil {
|
||||
return chs, err
|
||||
|
@ -1843,7 +1843,7 @@ func utlsIdToSpec(id ClientHelloID) (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)
|
||||
|
||||
// Find indexes of GREASE and padding extensions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue