From 7e810d16d7a376451c535116cb65a04e2b4743ea Mon Sep 17 00:00:00 2001 From: Gaukas Wang Date: Fri, 5 May 2023 14:01:50 -0600 Subject: [PATCH] fix: removed redundant assignment removed a legacy assignment to `hello.CipherSuites` in `ApplyPreset()` which gets overwritten later in code --- u_parrots.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/u_parrots.go b/u_parrots.go index e2765b8..06db67b 100644 --- a/u_parrots.go +++ b/u_parrots.go @@ -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} }