mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: implicit struct declaration
- A struct of `UtlsGREASEExtension` was implicitly declared and causing build to fail after the type being extended. - Fixed after naming each fields inside the declaration.
This commit is contained in:
parent
77fb9c073d
commit
14400a8b99
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ func (f *Fingerprinter) FingerprintClientHello(data []byte) (*ClientHelloSpec, e
|
|||
|
||||
default:
|
||||
if isGREASEUint16(extension) {
|
||||
clientHelloSpec.Extensions = append(clientHelloSpec.Extensions, &UtlsGREASEExtension{unGREASEUint16(extension), extData})
|
||||
clientHelloSpec.Extensions = append(clientHelloSpec.Extensions, &UtlsGREASEExtension{Value: unGREASEUint16(extension), Body: extData})
|
||||
} else if f.AllowBluntMimicry {
|
||||
clientHelloSpec.Extensions = append(clientHelloSpec.Extensions, &GenericExtension{extension, extData})
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue