blob: 73163cecb19e6aeec7bdebdff48b2fda13b42f95 [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
5#ifndef QUICHE_QUIC_CORE_FRAMES_QUIC_WINDOW_UPDATE_FRAME_H_
6#define QUICHE_QUIC_CORE_FRAMES_QUIC_WINDOW_UPDATE_FRAME_H_
7
8#include <ostream>
9
10#include "net/third_party/quiche/src/quic/core/quic_types.h"
11
12namespace quic {
13
14// Flow control updates per-stream and at the connection level.
15// Based on SPDY's WINDOW_UPDATE frame, but uses an absolute byte offset rather
16// than a window delta.
17// TODO(rjshade): A possible future optimization is to make stream_id and
18// byte_offset variable length, similar to stream frames.
19struct QUIC_EXPORT_PRIVATE QuicWindowUpdateFrame {
20 QuicWindowUpdateFrame();
21 QuicWindowUpdateFrame(QuicControlFrameId control_frame_id,
22 QuicStreamId stream_id,
23 QuicStreamOffset byte_offset);
24
25 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
26 std::ostream& os,
27 const QuicWindowUpdateFrame& w);
28
29 // A unique identifier of this control frame. 0 when this frame is received,
30 // and non-zero when sent.
31 QuicControlFrameId control_frame_id;
32
33 // The stream this frame applies to. 0 is a special case meaning the overall
34 // connection rather than a specific stream.
35 QuicStreamId stream_id;
36
37 // Byte offset in the stream or connection. The receiver of this frame must
38 // not send data which would result in this offset being exceeded.
39 //
40 // TODO(fkastenholz): Rename this to max_data and change the type to
41 // QuicByteCount because the IETF defines this as the "maximum
42 // amount of data that can be sent".
43 QuicStreamOffset byte_offset;
44};
45
46} // namespace quic
47
48#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_WINDOW_UPDATE_FRAME_H_