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
cipherSuite *cipherSuiteTLS13
cachedLength *int
// Deprecated: Set OmitEmptyPsk in Config instead.
OmitEmptyPsk bool
}
@ -308,8 +309,9 @@ func (e *UtlsPreSharedKeyExtension) UnmarshalJSON(_ []byte) error {
type FakePreSharedKeyExtension struct {
UnimplementedPreSharedKeyExtension
Identities []PskIdentity `json:"identities"`
Binders [][]byte `json:"binders"`
Identities []PskIdentity `json:"identities"`
Binders [][]byte `json:"binders"`
// Deprecated: Set OmitEmptyPsk in Config instead.
OmitEmptyPsk bool
}