implement basic ACK block parsing for QUIC 34 ACK frames

ref #182
This commit is contained in:
Marten Seemann
2016-06-20 11:31:23 +07:00
parent 9c5a1cce0e
commit 963517e7be
3 changed files with 119 additions and 12 deletions

9
frames/ack_range.go Normal file
View File

@@ -0,0 +1,9 @@
package frames
import "github.com/lucas-clemente/quic-go/protocol"
// AckRange is an ACK range
type AckRange struct {
FirstPacketNumber protocol.PacketNumber
LastPacketNumber protocol.PacketNumber
}