|
Network System 0.1.1
High-performance modular networking library for scalable client-server applications
|
STREAM frame type flags (bits 0-2 of type byte) More...
Variables | |
| constexpr uint8_t | fin = 0x01 |
| Stream is finished. | |
| constexpr uint8_t | len = 0x02 |
| Length field present. | |
| constexpr uint8_t | off = 0x04 |
| Offset field present. | |
| constexpr uint8_t | mask = 0x07 |
| Mask for all flags. | |
| constexpr uint8_t | base = 0x08 |
| Base type for STREAM frames. | |
STREAM frame type flags (bits 0-2 of type byte)
When the frame type is in range 0x08-0x0f:
|
constexpr |
Base type for STREAM frames.
Definition at line 67 of file frame_types.h.
Referenced by kcenon::network::protocols::quic::make_stream_type().
|
constexpr |
Stream is finished.
Definition at line 63 of file frame_types.h.
Referenced by kcenon::network::protocols::quic::make_stream_type(), and kcenon::network::protocols::quic::frame_parser::parse_stream().
|
constexpr |
Length field present.
Definition at line 64 of file frame_types.h.
Referenced by kcenon::network::protocols::quic::make_stream_type(), and kcenon::network::protocols::quic::frame_parser::parse_stream().
|
constexpr |
Mask for all flags.
Definition at line 66 of file frame_types.h.
Referenced by kcenon::network::protocols::quic::get_stream_flags().
|
constexpr |
Offset field present.
Definition at line 65 of file frame_types.h.
Referenced by kcenon::network::protocols::quic::make_stream_type(), and kcenon::network::protocols::quic::frame_parser::parse_stream().