QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
QUICHE team | 5be974e | 2020-12-29 18:35:24 -0500 | [diff] [blame] | 5 | #include "quic/core/frames/quic_stop_waiting_frame.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 6 | |
QUICHE team | 5be974e | 2020-12-29 18:35:24 -0500 | [diff] [blame] | 7 | #include "quic/core/quic_constants.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 8 | |
| 9 | namespace quic { |
| 10 | |
| 11 | QuicStopWaitingFrame::QuicStopWaitingFrame() |
| 12 | : QuicInlinedFrame(STOP_WAITING_FRAME) {} |
| 13 | |
| 14 | std::ostream& operator<<(std::ostream& os, |
| 15 | const QuicStopWaitingFrame& sent_info) { |
| 16 | os << "{ least_unacked: " << sent_info.least_unacked << " }\n"; |
| 17 | return os; |
| 18 | } |
| 19 | |
| 20 | } // namespace quic |