mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17: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
|
||||
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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue