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,25 +2588,32 @@ func ShuffleChromeTLSExtensions(exts []TLSExtension) []TLSExtension {
}
func (uconn *UConn) applyPresetByID(id ClientHelloID) (err error) {
var spec ClientHelloSpec
uconn.ClientHelloID = id
// choose/generate the spec
switch id.Client {
case helloRandomized, helloRandomizedNoALPN, helloRandomizedALPN:
spec, err = uconn.generateRandomizedSpec()
if err != nil {
return err
}
case helloCustom:
return nil
default:
spec, err = UTLSIdToSpec(id)
if err != nil {
return err
if uconn.clientHelloSpec == nil {
var spec ClientHelloSpec
uconn.ClientHelloID = id
// choose/generate the spec
switch id.Client {
case helloRandomized, helloRandomizedNoALPN, helloRandomizedALPN:
spec, err = uconn.generateRandomizedSpec()
if err != nil {
return err
}
case helloCustom:
return nil
default:
spec, err = UTLSIdToSpec(id)
if err != nil {
return err
}
}
uconn.clientHelloSpec = &spec
}
return uconn.ApplyPreset(&spec)
return uconn.ApplyPreset(uconn.clientHelloSpec)
}
// ApplyPreset should only be used in conjunction with HelloCustom to apply custom specs.