mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27: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
15
common.go
15
common.go
|
@ -700,6 +700,19 @@ type Config struct {
|
|||
// This field is ignored when InsecureSkipVerify is true.
|
||||
InsecureServerNameToVerify string // [uTLS]
|
||||
|
||||
// PreferSkipResumptionOnNilExtension controls the behavior when session resumption is enabled but the corresponding session extensions are nil.
|
||||
//
|
||||
// To successfully use session resumption, ensure that the following requirements are met:
|
||||
// - SessionTicketsDisabled is set to false
|
||||
// - ClientSessionCache is non-nil
|
||||
// - For TLS 1.2, SessionTicketExtension is non-nil
|
||||
// - For TLS 1.3, PreSharedKeyExtension is non-nil
|
||||
//
|
||||
// There may be cases where users enable session resumption (SessionTicketsDisabled: false && ClientSessionCache: non-nil), but they do not provide SessionTicketExtension or PreSharedKeyExtension in the ClientHelloSpec. This could be intentional or accidental.
|
||||
//
|
||||
// By default, utls throws an exception in such scenarios. Set this to true to skip the resumption and suppress the exception.
|
||||
PreferSkipResumptionOnNilExtension bool // [uTLS]
|
||||
|
||||
// CipherSuites is a list of enabled TLS 1.0–1.2 cipher suites. The order of
|
||||
// the list is ignored. Note that TLS 1.3 ciphersuites are not configurable.
|
||||
//
|
||||
|
@ -906,6 +919,8 @@ func (c *Config) Clone() *Config {
|
|||
KeyLogWriter: c.KeyLogWriter,
|
||||
sessionTicketKeys: c.sessionTicketKeys,
|
||||
autoSessionTicketKeys: c.autoSessionTicketKeys,
|
||||
|
||||
PreferSkipResumptionOnNilExtension: c.PreferSkipResumptionOnNilExtension, // [UTLS]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue