mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47: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: " +
|
return errors.New("ClientHello expected length: 32 bytes. Got: " +
|
||||||
strconv.Itoa(len(hello.Random)) + " bytes")
|
strconv.Itoa(len(hello.Random)) + " bytes")
|
||||||
}
|
}
|
||||||
if len(hello.CipherSuites) == 0 {
|
|
||||||
hello.CipherSuites = defaultCipherSuites
|
|
||||||
}
|
|
||||||
if len(hello.CompressionMethods) == 0 {
|
if len(hello.CompressionMethods) == 0 {
|
||||||
hello.CompressionMethods = []uint8{compressionNone}
|
hello.CompressionMethods = []uint8{compressionNone}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue