ack ACK handling for ACKs without NACKs

This commit is contained in:
Marten Seemann
2016-04-21 16:36:47 +07:00
parent e18697a5bc
commit 9385aac35c
5 changed files with 102 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ import (
type OutgoingPacketAckHandler interface {
SentPacket(packet *Packet) error
ReceivedAck(ackFrame *frames.AckFrame)
ReceivedAck(ackFrame *frames.AckFrame) error
DequeuePacketForRetransmission() (packet *Packet)
}