From 14400a8b99ac29f1941d917d57fa89762cfb452a Mon Sep 17 00:00:00 2001 From: Gaukas Wang Date: Tue, 8 Nov 2022 22:17:56 -0700 Subject: [PATCH] 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. --- u_fingerprinter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u_fingerprinter.go b/u_fingerprinter.go index d0c1bcc..e7654ae 100644 --- a/u_fingerprinter.go +++ b/u_fingerprinter.go @@ -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 {