mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
feat: specific case for GREASE and ALPS
Will automatically add "h2" to ALPS and write to log when GREASE extension is imported in `ImportTLSClientHello()`
This commit is contained in:
parent
fb742616ca
commit
9351f1957f
1 changed files with 10 additions and 1 deletions
11
u_common.go
11
u_common.go
|
@ -279,7 +279,7 @@ func (chs *ClientHelloSpec) ImportTLSClientHello(data map[string][]byte, keepPSK
|
|||
for _, extType := range tlsExtensionTypes {
|
||||
extension := ExtensionIDToExtension(extType)
|
||||
if extension == nil {
|
||||
log.Printf("[Warning] Unsupported extension %d", extType)
|
||||
log.Printf("[Warning] Unsupported extension %d added as a &GenericExtension without Data", extType)
|
||||
chs.Extensions = append(chs.Extensions, &GenericExtension{extType, []byte{}})
|
||||
} else {
|
||||
if extType == extensionSupportedVersions {
|
||||
|
@ -355,6 +355,15 @@ func (chs *ClientHelloSpec) ImportTLSClientHello(data map[string][]byte, keepPSK
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
case utlsExtensionApplicationSettings:
|
||||
// TODO: tlsfingerprint.io should also provide application settings data
|
||||
extension.(*ApplicationSettingsExtension).SupportedProtocols = []string{"h2"}
|
||||
default:
|
||||
if isGREASEUint16(extType) {
|
||||
log.Printf("[Info] GREASE extension added without specifying Value or Data. It will be automatically re-GREASEd on ApplyPreset() call.")
|
||||
} else {
|
||||
log.Printf("[Warning] extension %d added without data", extType)
|
||||
}
|
||||
}
|
||||
chs.Extensions = append(chs.Extensions, extension)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue