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

This commit is contained in:
Sleeyax 2023-10-13 22:34:45 +02:00 committed by GitHub
parent 1880d78669
commit 30f5a69dbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
} }
@ -310,6 +311,7 @@ type FakePreSharedKeyExtension struct {
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
} }