fix: generate ClientHelloSpec only once

This commit is contained in:
Amir Khan 2024-07-18 12:18:32 -04:00
parent 841ef93712
commit 6a73d07bc2
2 changed files with 24 additions and 16 deletions

View file

@ -32,6 +32,7 @@ type UConn struct {
sessionController *sessionController
clientHelloBuildStatus ClientHelloBuildStatus
clientHelloSpec *ClientHelloSpec
HandshakeState PubClientHandshakeState

View file

@ -2588,8 +2588,12 @@ func ShuffleChromeTLSExtensions(exts []TLSExtension) []TLSExtension {
}
func (uconn *UConn) applyPresetByID(id ClientHelloID) (err error) {
if uconn.clientHelloSpec == nil {
var spec ClientHelloSpec
uconn.ClientHelloID = id
// choose/generate the spec
switch id.Client {
case helloRandomized, helloRandomizedNoALPN, helloRandomizedALPN:
@ -2606,7 +2610,10 @@ func (uconn *UConn) applyPresetByID(id ClientHelloID) (err error) {
}
}
return uconn.ApplyPreset(&spec)
uconn.clientHelloSpec = &spec
}
return uconn.ApplyPreset(uconn.clientHelloSpec)
}
// ApplyPreset should only be used in conjunction with HelloCustom to apply custom specs.