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:
Gaukas Wang 2022-11-08 22:17:56 -07:00
parent 77fb9c073d
commit 14400a8b99
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -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 {