mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
fix: removed redundant assignment (#184)
removed a legacy assignment to `hello.CipherSuites` in `ApplyPreset()` which gets overwritten later in code
This commit is contained in:
parent
e4fc271fd2
commit
c062ac9497
1 changed files with 1 additions and 3 deletions
|
@ -2036,9 +2036,7 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
|
|||
return errors.New("ClientHello expected length: 32 bytes. Got: " +
|
||||
strconv.Itoa(len(hello.Random)) + " bytes")
|
||||
}
|
||||
if len(hello.CipherSuites) == 0 {
|
||||
hello.CipherSuites = defaultCipherSuites
|
||||
}
|
||||
|
||||
if len(hello.CompressionMethods) == 0 {
|
||||
hello.CompressionMethods = []uint8{compressionNone}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue