From 5e8c6e59f6c9b2641545af7c4473d1ef7e812688 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Mon, 27 Jun 2016 11:22:35 +0700 Subject: [PATCH] remove NackRanges from new AckFrame --- frames/ack_frame_new.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frames/ack_frame_new.go b/frames/ack_frame_new.go index fdf6ae02..918b1a3d 100644 --- a/frames/ack_frame_new.go +++ b/frames/ack_frame_new.go @@ -20,9 +20,8 @@ var ( // An AckFrameNew is a ACK frame in QUIC c34 type AckFrameNew struct { LargestAcked protocol.PacketNumber - NackRanges []NackRange // has to be ordered. The NACK range with the highest FirstPacketNumber goes first, the NACK range with the lowest FirstPacketNumber goes last LowestAcked protocol.PacketNumber - AckRanges []AckRange + AckRanges []AckRange // has to be ordered. The ACK range with the highest FirstPacketNumber goes first, the ACK range with the lowest FirstPacketNumber goes last DelayTime time.Duration PacketReceivedTime time.Time // only for received packets. Will not be modified for received ACKs frames