mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
feat: add an option to skip resumption on nil ext & update examples (#239)
* feat: add an option to skip resumption on nil ext feat: update examples * fix: clone unit test
This commit is contained in:
parent
df6e4c827a
commit
75eb8e9e80
5 changed files with 86 additions and 14 deletions
|
@ -854,7 +854,7 @@ func TestCloneNonFuncFields(t *testing.T) {
|
|||
f.Set(reflect.ValueOf("b"))
|
||||
case "ClientAuth":
|
||||
f.Set(reflect.ValueOf(VerifyClientCertIfGiven))
|
||||
case "InsecureSkipVerify", "InsecureSkipTimeVerify", "SessionTicketsDisabled", "DynamicRecordSizingDisabled", "PreferServerCipherSuites", "OmitEmptyPsk":
|
||||
case "InsecureSkipVerify", "InsecureSkipTimeVerify", "SessionTicketsDisabled", "DynamicRecordSizingDisabled", "PreferServerCipherSuites", "OmitEmptyPsk", "PreferSkipResumptionOnNilExtension":
|
||||
f.Set(reflect.ValueOf(true))
|
||||
case "InsecureServerNameToVerify":
|
||||
f.Set(reflect.ValueOf("c"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue