mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
fix: generate ClientHelloSpec only once (#306)
* fix: generate ClientHelloSpec only once * chore: remove empty line in u_parrots.go Co-authored-by: Gaukas Wang <i@gauk.as> Signed-off-by: adotkhan <61702862+adotkhan@users.noreply.github.com> --------- Signed-off-by: adotkhan <61702862+adotkhan@users.noreply.github.com> Co-authored-by: Gaukas Wang <i@gauk.as>
This commit is contained in:
parent
841ef93712
commit
4a28d1af44
2 changed files with 23 additions and 16 deletions
|
@ -32,6 +32,7 @@ type UConn struct {
|
||||||
sessionController *sessionController
|
sessionController *sessionController
|
||||||
|
|
||||||
clientHelloBuildStatus ClientHelloBuildStatus
|
clientHelloBuildStatus ClientHelloBuildStatus
|
||||||
|
clientHelloSpec *ClientHelloSpec
|
||||||
|
|
||||||
HandshakeState PubClientHandshakeState
|
HandshakeState PubClientHandshakeState
|
||||||
|
|
||||||
|
|
|
@ -2588,8 +2588,11 @@ func ShuffleChromeTLSExtensions(exts []TLSExtension) []TLSExtension {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (uconn *UConn) applyPresetByID(id ClientHelloID) (err error) {
|
func (uconn *UConn) applyPresetByID(id ClientHelloID) (err error) {
|
||||||
|
|
||||||
|
if uconn.clientHelloSpec == nil {
|
||||||
var spec ClientHelloSpec
|
var spec ClientHelloSpec
|
||||||
uconn.ClientHelloID = id
|
uconn.ClientHelloID = id
|
||||||
|
|
||||||
// choose/generate the spec
|
// choose/generate the spec
|
||||||
switch id.Client {
|
switch id.Client {
|
||||||
case helloRandomized, helloRandomizedNoALPN, helloRandomizedALPN:
|
case helloRandomized, helloRandomizedNoALPN, helloRandomizedALPN:
|
||||||
|
@ -2606,7 +2609,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.
|
// ApplyPreset should only be used in conjunction with HelloCustom to apply custom specs.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue