Index: net/quic/quic_packet_creator.cc |
diff --git a/net/quic/quic_packet_creator.cc b/net/quic/quic_packet_creator.cc |
index 717232eaafc05bcd0a41018bc0846498466a3dcd..13d357c3048c27ba9155faf517f0ec05e1c658cd 100644 |
--- a/net/quic/quic_packet_creator.cc |
+++ b/net/quic/quic_packet_creator.cc |
@@ -134,7 +134,7 @@ bool QuicPacketCreator::ConsumeData(QuicStreamId id, |
} |
CreateStreamFrame(id, iov, iov_offset, offset, fin, frame); |
// Explicitly disallow multi-packet CHLOs. |
- if (FLAGS_quic_disallow_multi_packet_chlo && id == kCryptoStreamId && |
+ if (id == kCryptoStreamId && |
frame->stream_frame->data_length >= sizeof(kCHLO) && |
strncmp(frame->stream_frame->data_buffer, |
reinterpret_cast<const char*>(&kCHLO), sizeof(kCHLO)) == 0) { |