Index: net/quic/reliable_quic_stream.cc |
diff --git a/net/quic/reliable_quic_stream.cc b/net/quic/reliable_quic_stream.cc |
index 2682d5b84a865730a017f9d0a99c11947104b4eb..c5f2471e0ae0f93b34beddab3bbfe83d49fd7ff0 100644 |
--- a/net/quic/reliable_quic_stream.cc |
+++ b/net/quic/reliable_quic_stream.cc |
@@ -115,8 +115,9 @@ void ReliableQuicStream::OnStreamFrame(const QuicStreamFrame& frame) { |
// violation of flow control. |
if (flow_controller_.FlowControlViolation() || |
connection_flow_controller_->FlowControlViolation()) { |
- session_->connection()->SendConnectionClose( |
- QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA); |
+ session_->connection()->SendConnectionCloseWithDetails( |
+ QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA, |
+ "Flow control violation after increasing offset"); |
return; |
} |
} |