mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
cmd/link, crypto/tls: don't use append loops
Change-Id: Ib47e295e8646b769c30fd81e5c7f20f964df163e Reviewed-on: https://go-review.googlesource.com/36335 Reviewed-by: Filippo Valsorda <hi@filippo.io> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
905f7aea38
commit
bdb5cb7a61
1 changed files with 1 additions and 3 deletions
|
@ -946,9 +946,7 @@ func initDefaultCipherSuites() {
|
|||
}
|
||||
|
||||
varDefaultCipherSuites = make([]uint16, 0, len(cipherSuites))
|
||||
for _, topCipher := range topCipherSuites {
|
||||
varDefaultCipherSuites = append(varDefaultCipherSuites, topCipher)
|
||||
}
|
||||
varDefaultCipherSuites = append(varDefaultCipherSuites, topCipherSuites...)
|
||||
|
||||
NextCipherSuite:
|
||||
for _, suite := range cipherSuites {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue