mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
docs: deprecate usage of OmitEmptyPsk
field in PreSharedKeyExtension
(closes #255)
This commit is contained in:
parent
1880d78669
commit
da8a948311
1 changed files with 4 additions and 2 deletions
|
@ -134,6 +134,7 @@ type UtlsPreSharedKeyExtension struct {
|
||||||
PreSharedKeyCommon
|
PreSharedKeyCommon
|
||||||
cipherSuite *cipherSuiteTLS13
|
cipherSuite *cipherSuiteTLS13
|
||||||
cachedLength *int
|
cachedLength *int
|
||||||
|
// Deprecated: Set OmitEmptyPsk in Config instead.
|
||||||
OmitEmptyPsk bool
|
OmitEmptyPsk bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -308,8 +309,9 @@ func (e *UtlsPreSharedKeyExtension) UnmarshalJSON(_ []byte) error {
|
||||||
type FakePreSharedKeyExtension struct {
|
type FakePreSharedKeyExtension struct {
|
||||||
UnimplementedPreSharedKeyExtension
|
UnimplementedPreSharedKeyExtension
|
||||||
|
|
||||||
Identities []PskIdentity `json:"identities"`
|
Identities []PskIdentity `json:"identities"`
|
||||||
Binders [][]byte `json:"binders"`
|
Binders [][]byte `json:"binders"`
|
||||||
|
// Deprecated: Set OmitEmptyPsk in Config instead.
|
||||||
OmitEmptyPsk bool
|
OmitEmptyPsk bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue