blob: c5ce9389dc3d7d2b3a8affb9b68c16ab99915f2c [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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 team5be974e2020-12-29 18:35:24 -05005#include "quic/core/frames/quic_stop_waiting_frame.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -05006
QUICHE team5be974e2020-12-29 18:35:24 -05007#include "quic/core/quic_constants.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -05008
9namespace quic {
10
11QuicStopWaitingFrame::QuicStopWaitingFrame()
12 : QuicInlinedFrame(STOP_WAITING_FRAME) {}
13
14std::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