Files
quic-go/ackhandler/packet.go
Marten Seemann 0164feff8f add Packet class
2016-04-20 18:37:55 +07:00

13 lines
219 B
Go

package ackhandler
import "github.com/lucas-clemente/quic-go/protocol"
// A Packet is a packet
type Packet struct {
PacketNumber protocol.PacketNumber
Plaintext []byte
EntropyBit bool
MissingReports uint8
}