mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: generate ClientHelloSpec only once
This commit is contained in:
parent
841ef93712
commit
6a73d07bc2
2 changed files with 24 additions and 16 deletions
|
@ -32,6 +32,7 @@ type UConn struct {
|
|||
sessionController *sessionController
|
||||
|
||||
clientHelloBuildStatus ClientHelloBuildStatus
|
||||
clientHelloSpec *ClientHelloSpec
|
||||
|
||||
HandshakeState PubClientHandshakeState
|
||||
|
||||
|
|
39
u_parrots.go
39
u_parrots.go
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue