rename OutgoingPacketAckHandler to SentPacketHandler

This commit is contained in:
Marten Seemann
2016-04-26 10:07:00 +07:00
parent ccc6d23a7d
commit 0088636798
4 changed files with 25 additions and 25 deletions

View File

@@ -5,8 +5,8 @@ import (
"github.com/lucas-clemente/quic-go/protocol"
)
// OutgoingPacketAckHandler handles ACKs received for outgoing packets
type OutgoingPacketAckHandler interface {
// SentPacketHandler handles ACKs received for outgoing packets
type SentPacketHandler interface {
SentPacket(packet *Packet) error
ReceivedAck(ackFrame *frames.AckFrame) error