1
0
mirror of https://github.com/golang/go synced 2024-11-15 05:50:37 -07:00

crypto/tls: remove typeNextProtocol

Was this strictly necessary? No.
Did this deserve its own CL? Maybe not.
But I have a personal vendetta against NPN.

Change-Id: Ide1ad1092259dc23e3ead5c1d5269fc5cb2793d7
Reviewed-on: https://go-review.googlesource.com/c/go/+/587275
Reviewed-by: Roland Shoemaker <roland@golang.org>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
Filippo Valsorda 2024-05-18 20:15:38 +02:00 committed by Gopher Robot
parent 6f08665079
commit aeb2c2a896

View File

@ -93,7 +93,6 @@ const (
typeFinished uint8 = 20 typeFinished uint8 = 20
typeCertificateStatus uint8 = 22 typeCertificateStatus uint8 = 22
typeKeyUpdate uint8 = 24 typeKeyUpdate uint8 = 24
typeNextProtocol uint8 = 67 // Not IANA assigned
typeMessageHash uint8 = 254 // synthetic message typeMessageHash uint8 = 254 // synthetic message
) )