aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo@golang.org>2023-05-21 21:27:48 +0200
committerFilippo Valsorda <filippo@golang.org>2023-05-24 23:56:48 +0000
commit371ebe731bf6ebae3d6914835674e276d98254f5 (patch)
treed9c90f7b61645dbcc5395a3b4ff70f8fcf9dc236 /api
parent6d05bc7816feee6e96cabaf5755f52cb212b99e8 (diff)
downloadgo-371ebe731bf6ebae3d6914835674e276d98254f5.tar.gz
go-371ebe731bf6ebae3d6914835674e276d98254f5.zip
crypto/tls: add ClientSessionState.ResumptionState and NewResumptionState
For #60105 Fixes #25351 Change-Id: Iffd658f2663cfc47b48157824226ed6c0260a59e Reviewed-on: https://go-review.googlesource.com/c/go/+/496820 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Marten Seemann <martenseemann@gmail.com>
Diffstat (limited to 'api')
-rw-r--r--api/next/60105.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/api/next/60105.txt b/api/next/60105.txt
index 75adbcc8aa..251f574c8f 100644
--- a/api/next/60105.txt
+++ b/api/next/60105.txt
@@ -1,3 +1,5 @@
pkg crypto/tls, func ParseSessionState([]uint8) (*SessionState, error) #60105
pkg crypto/tls, method (*SessionState) Bytes() ([]uint8, error) #60105
pkg crypto/tls, type SessionState struct #60105
+pkg crypto/tls, func NewResumptionState([]uint8, *SessionState) (*ClientSessionState, error) #60105
+pkg crypto/tls, method (*ClientSessionState) ResumptionState() ([]uint8, *SessionState, error) #60105