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:
Gaukas Wang 2023-07-06 15:14:44 -06:00 committed by GitHub
parent e4fc271fd2
commit c062ac9497
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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