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
|
@ -210,12 +210,9 @@ func TestUTLSHandshakeClientParrotAndroid_5_1(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
@ -239,12 +236,9 @@ func disabledtestUTLSHandshakeClientParrotAndroid_6_0(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
@ -268,12 +262,9 @@ func disabledtestUTLSHandshakeClientParrotChrome_58(t *testing.T) {
|
|||
|
||||
// As this package sometimes has to modify global vars cipherSuites and supportedSignatureAlgorithms,
|
||||
// we'll back them up and restore after running the tests.
|
||||
cipherSuitesBackup := make([]*cipherSuite, len(cipherSuites))
|
||||
supportedSignatureAlgorithmsBackup := make([]signatureAndHash, len(supportedSignatureAlgorithms))
|
||||
copy(cipherSuitesBackup, cipherSuites)
|
||||
copy(supportedSignatureAlgorithmsBackup, supportedSignatureAlgorithms)
|
||||
defer func() {
|
||||
cipherSuites = cipherSuitesBackup
|
||||
supportedSignatureAlgorithms = supportedSignatureAlgorithmsBackup
|
||||
}()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue