avoid type confusion between protocol.PacketType and logging.PacketType

The enums have completely different meanings. protocol.PacketType only
defines long header types, whereas logging.PacketType defines all
different types of QUIC packets (including short header packets).
This commit is contained in:
Marten Seemann 2021-03-21 12:51:18 +08:00
parent 81d16a9903
commit e9b4f9ba07
5 changed files with 7 additions and 9 deletions

View file

@ -1,9 +1,7 @@
package logging
import "github.com/lucas-clemente/quic-go/internal/protocol"
// PacketType is the packet type of a QUIC packet
type PacketType = protocol.PacketType
type PacketType uint8
const (
// PacketTypeInitial is the packet type of an Initial packet