Merge pull request #956 from lucas-clemente/packet-type-names

add a string representation for the Long Header packet types
This commit is contained in:
Marten Seemann 2017-11-23 06:25:35 -08:00 committed by GitHub
commit ccd91a36b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 4 deletions

View file

@ -1,6 +1,9 @@
package protocol package protocol
import "math" import (
"fmt"
"math"
)
// A PacketNumber in QUIC // A PacketNumber in QUIC
type PacketNumber uint64 type PacketNumber uint64
@ -37,6 +40,23 @@ const (
PacketType0RTT PacketType = 5 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 // A ConnectionID in QUIC
type ConnectionID uint64 type ConnectionID uint64

View file

@ -0,0 +1,19 @@
package protocol
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Protocol", func() {
Context("Long Header Packet Types", func() {
It("has the correct string representation", func() {
Expect(PacketTypeVersionNegotiation.String()).To(Equal("Version Negotiation"))
Expect(PacketTypeInitial.String()).To(Equal("Initial"))
Expect(PacketTypeRetry.String()).To(Equal("Retry"))
Expect(PacketTypeHandshake.String()).To(Equal("Handshake"))
Expect(PacketType0RTT.String()).To(Equal("0-RTT Protected"))
Expect(PacketType(10).String()).To(Equal("unknown packet type: 10"))
})
})
})

View file

@ -159,7 +159,7 @@ func (h *Header) getHeaderLength() (protocol.ByteCount, error) {
func (h *Header) logHeader() { func (h *Header) logHeader() {
if h.IsLongHeader { if h.IsLongHeader {
utils.Debugf(" Long Header{Type: %#x, ConnectionID: %#x, PacketNumber: %#x, Version: %s}", h.Type, h.ConnectionID, h.PacketNumber, h.Version) utils.Debugf(" Long Header{Type: %s, ConnectionID: %#x, PacketNumber: %#x, Version: %s}", h.Type, h.ConnectionID, h.PacketNumber, h.Version)
} else { } else {
connID := "(omitted)" connID := "(omitted)"
if !h.OmitConnectionID { if !h.OmitConnectionID {

View file

@ -389,12 +389,12 @@ var _ = Describe("IETF draft Header", func() {
It("logs Long Headers", func() { It("logs Long Headers", func() {
(&Header{ (&Header{
IsLongHeader: true, IsLongHeader: true,
Type: 0x5, Type: protocol.PacketTypeHandshake,
PacketNumber: 0x1337, PacketNumber: 0x1337,
ConnectionID: 0xdeadbeef, ConnectionID: 0xdeadbeef,
Version: 253, Version: 253,
}).logHeader() }).logHeader()
Expect(string(buf.Bytes())).To(ContainSubstring("Long Header{Type: 0x5, ConnectionID: 0xdeadbeef, PacketNumber: 0x1337, Version: 253}")) Expect(string(buf.Bytes())).To(ContainSubstring("Long Header{Type: Handshake, ConnectionID: 0xdeadbeef, PacketNumber: 0x1337, Version: 253}"))
}) })
It("logs Short Headers containing a connection ID", func() { It("logs Short Headers containing a connection ID", func() {