add a string representation for the Long Header packet types

This commit is contained in:
Marten Seemann 2017-11-22 15:57:22 -08:00
parent 5618950054
commit 4076ab587e
4 changed files with 43 additions and 4 deletions

View file

@ -1,6 +1,9 @@
package protocol
import "math"
import (
"fmt"
"math"
)
// A PacketNumber in QUIC
type PacketNumber uint64
@ -37,6 +40,23 @@ const (
PacketType0RTT PacketType = 5
)
func (t PacketType) String() string {
switch t {
case PacketTypeVersionNegotiation:
return "Version Negotiation"
case PacketTypeInitial:
return "Initial"
case PacketTypeRetry:
return "Retry"
case PacketTypeHandshake:
return "Handshake"
case PacketType0RTT:
return "0-RTT Protected"
default:
return fmt.Sprintf("unknown packet type: %d", t)
}
}
// A ConnectionID in QUIC
type ConnectionID uint64