remove deprecated quic.VersionNumber and logging.VersionNumber (#4627)

This commit is contained in:
Marten Seemann
2024-08-12 02:55:21 -07:00
committed by GitHub
parent 0b033db188
commit 39e2a69a90
2 changed files with 0 additions and 7 deletions

View File

@@ -19,10 +19,6 @@ type StreamID = protocol.StreamID
// A Version is a QUIC version number.
type Version = protocol.Version
// A VersionNumber is a QUIC version number.
// Deprecated: VersionNumber was renamed to Version.
type VersionNumber = Version
const (
// Version1 is RFC 9000
Version1 = protocol.Version1

View File

@@ -36,9 +36,6 @@ type (
StreamNum = protocol.StreamNum
// The StreamType is the type of the stream (unidirectional or bidirectional).
StreamType = protocol.StreamType
// The VersionNumber is the QUIC version.
// Deprecated: use Version instead.
VersionNumber = protocol.Version
// The Version is the QUIC version.
Version = protocol.Version