From da8a948311085a43aa516dba09cb9b88a588abca Mon Sep 17 00:00:00 2001 From: Sleeyax Date: Fri, 13 Oct 2023 21:23:02 +0200 Subject: [PATCH] docs: deprecate usage of `OmitEmptyPsk` field in `PreSharedKeyExtension` (closes #255) --- u_pre_shared_key.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/u_pre_shared_key.go b/u_pre_shared_key.go index e96a3c0..65e0bb6 100644 --- a/u_pre_shared_key.go +++ b/u_pre_shared_key.go @@ -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 }