mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package ackhandler
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
)
|
|
|
|
// A Packet is a packet
|
|
// +gen linkedlist
|
|
type Packet struct {
|
|
PacketNumber protocol.PacketNumber
|
|
PacketType protocol.PacketType
|
|
Frames []wire.Frame
|
|
Length protocol.ByteCount
|
|
EncryptionLevel protocol.EncryptionLevel
|
|
|
|
largestAcked protocol.PacketNumber // if the packet contains an ACK, the LargestAcked value of that ACK
|
|
sendTime time.Time
|
|
|
|
queuedForRetransmission bool
|
|
includedInBytesInFlight bool
|
|
retransmittedAs []protocol.PacketNumber
|
|
isRetransmission bool // we need a separate bool here because 0 is a valid packet number
|
|
retransmissionOf protocol.PacketNumber
|
|
}
|
|
|
|
// GetFramesForRetransmission gets all the frames for retransmission
|
|
func (p *Packet) GetFramesForRetransmission() []wire.Frame {
|
|
var fs []wire.Frame
|
|
for _, frame := range p.Frames {
|
|
switch frame.(type) {
|
|
case *wire.AckFrame:
|
|
continue
|
|
case *wire.StopWaitingFrame:
|
|
continue
|
|
}
|
|
fs = append(fs, frame)
|
|
}
|
|
return fs
|
|
}
|