fix: removed redundant assignment

removed a legacy assignment to `hello.CipherSuites` in `ApplyPreset()` which gets overwritten later in code
This commit is contained in:
Gaukas Wang 2023-05-05 14:01:50 -06:00
parent c785bd3a1e
commit 7e810d16d7
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -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}
}