docs: deprecate usage of OmitEmptyPsk field in PreSharedKeyExtension (closes #255)

This commit is contained in:
Sleeyax 2023-10-13 21:23:02 +02:00
parent 1880d78669
commit da8a948311

View file

@ -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
} }