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
57
// 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.5
//# An endpoint uses a STOP_SENDING frame (type=0x05) to communicate that
//# incoming data is being discarded on receipt per application request.
//# STOP_SENDING requests that a peer cease transmission on a stream.
//= https://www.rfc-editor.org/rfc/rfc9000#section-19.5
//# STOP_SENDING Frame {
//# Type (i) = 0x05,
//# Stream ID (i),
//# Application Protocol Error Code (i),
//# }
//= https://www.rfc-editor.org/rfc/rfc9000#section-19.5
//# STOP_SENDING frames contain the following fields:
//#
//# Stream ID: A variable-length integer carrying the stream ID of the
//# stream being ignored.
//#
//# Application Protocol Error Code: A variable-length integer
//# containing the application-specified reason the sender is ignoring
//# the stream; see Section 20.2.
simple_frame_codec!;