mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Remove appendToGlobalCipherSuites
This function is not needed anymore, since check for whether ciphersuite is supported is done against per-tls.Config, not against global variable. One of needed changes for fixing data races, see #5
This commit is contained in:
parent
1e0af1a3f4
commit
0af497570e
3 changed files with 0 additions and 27 deletions
10
u_common.go
10
u_common.go
|
@ -101,16 +101,6 @@ var (
|
|||
HelloAndroid_5_1_Browser ClientHelloID = ClientHelloID{helloAndroid, 22}
|
||||
)
|
||||
|
||||
// Appends newCipher to cipherSuites, if not there already
|
||||
// Used to add old cipher ids
|
||||
func appendToGlobalCipherSuites(newCipher *cipherSuite) {
|
||||
for _, c := range cipherSuites {
|
||||
if c.id == newCipher.id {
|
||||
return
|
||||
}
|
||||
}
|
||||
cipherSuites = append(cipherSuites, newCipher)
|
||||
}
|
||||
|
||||
// Appends {hash, sig} to supportedSignatureAlgorithms, if not there already
|
||||
// Used to enable already supported but disabled signatures
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue