blob: 30dcdf4ca057b05c5740beaef827e2ac5f310c95 [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_BLOCKED_FRAME_H_
6#define QUICHE_QUIC_CORE_FRAMES_QUIC_BLOCKED_FRAME_H_
7
8#include <ostream>
9
10#include "net/third_party/quiche/src/quic/core/quic_types.h"
11
12namespace quic {
13
14// The BLOCKED frame is used to indicate to the remote endpoint that this
15// endpoint believes itself to be flow-control blocked but otherwise ready to
16// send data. The BLOCKED frame is purely advisory and optional.
17// Based on SPDY's BLOCKED frame (undocumented as of 2014-01-28).
18struct QUIC_EXPORT_PRIVATE QuicBlockedFrame {
19 QuicBlockedFrame();
20 QuicBlockedFrame(QuicControlFrameId control_frame_id, QuicStreamId stream_id);
21 QuicBlockedFrame(QuicControlFrameId control_frame_id,
22 QuicStreamId stream_id,
23 QuicStreamOffset offset);
24
25 friend QUIC_EXPORT_PRIVATE std::ostream& operator<<(
26 std::ostream& os,
27 const QuicBlockedFrame& b);
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
ianswett22781cb2019-12-12 06:45:08 -080033 // 0 is a special case meaning the connection is blocked, rather than a
34 // stream. So stream_id 0 corresponds to a BLOCKED frame and non-0
35 // corresponds to a STREAM_BLOCKED.
QUICHE teama6ef0a62019-03-07 20:34:33 -050036 // TODO(fkastenholz): This should be converted to use
37 // QuicUtils::GetInvalidStreamId to get the correct invalid stream id value
38 // and not rely on 0.
39 QuicStreamId stream_id;
40
41 // For Google QUIC, the offset is ignored.
42 QuicStreamOffset offset;
43};
44
45} // namespace quic
46
47#endif // QUICHE_QUIC_CORE_FRAMES_QUIC_BLOCKED_FRAME_H_