1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
use crateVarInt;
//= https://www.rfc-editor.org/rfc/rfc9000#section-19.10
//# A MAX_STREAM_DATA frame (type=0x11) is used in flow control to inform
//# a peer of the maximum amount of data that can be sent on a stream.
//= https://www.rfc-editor.org/rfc/rfc9000#section-19.10
//# MAX_STREAM_DATA Frame {
//# Type (i) = 0x11,
//# Stream ID (i),
//# Maximum Stream Data (i),
//# }
//= https://www.rfc-editor.org/rfc/rfc9000#section-19.10
//# MAX_STREAM_DATA frames contain the following fields:
//#
//# Stream ID: The stream ID of the affected stream, encoded as a
//# variable-length integer.
//#
//# Maximum Stream Data: A variable-length integer indicating the
//# maximum amount of data that can be sent on the identified stream,
//# in units of bytes.
simple_frame_codec!;