summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_framer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/quic_framer.cc')
-rw-r--r--net/quic/quic_framer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/quic/quic_framer.cc b/net/quic/quic_framer.cc
index 143d6b9..8540a19 100644
--- a/net/quic/quic_framer.cc
+++ b/net/quic/quic_framer.cc
@@ -114,7 +114,7 @@ bool QuicFramer::ConstructFecPacket(const QuicPacketHeader& header,
return false;
}
- if (!writer.WriteUInt48(fec.first_protected_packet_sequence_number)) {
+ if (!writer.WriteUInt48(fec.min_protected_packet_sequence_number)) {
return false;
}
@@ -177,7 +177,7 @@ bool QuicFramer::ProcessPacket(const IPEndPoint& peer_address,
QuicFecData fec_data;
fec_data.fec_group = header.fec_group;
if (!reader_->ReadUInt48(
- &fec_data.first_protected_packet_sequence_number)) {
+ &fec_data.min_protected_packet_sequence_number)) {
set_detailed_error("Unable to read first protected packet.");
return RaiseError(QUIC_INVALID_FEC_DATA);
}