Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Sync shared code from runtime #55830

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/Shared/runtime/Http3/Frames/Http3ErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,20 @@ internal enum Http3ErrorCode : long
/// The requested operation cannot be served over HTTP/3. The peer should retry over HTTP/1.1.
/// </summary>
VersionFallback = 0x110,
/// <summary>
/// H3_QPACK_DECOMPRESSION_FAILED (0x200):
/// The decoder failed to interpret an encoded field section and is not able to continue decoding that field section.
/// </summary>
QPackDecompressionFailed = 0x200,
/// <summary>
/// H3_QPACK_ENCODER_STREAM_ERROR (0x201):
/// The decoder failed to interpret an encoder instruction received on the encoder stream.
/// </summary>
QPackEncoderStreamError = 0x201,
/// <summary>
/// H3_QPACK_DECODER_STREAM_ERROR (0x202):
/// The encoder failed to interpret an decoder instruction received on the decoder stream.
/// </summary>
QPackDecoderStreamError = 0x202,
}
}
Loading