diff --git a/src/Shared/runtime/Http3/Frames/Http3ErrorCode.cs b/src/Shared/runtime/Http3/Frames/Http3ErrorCode.cs index 11e39e5f7848..fdfe04cee158 100644 --- a/src/Shared/runtime/Http3/Frames/Http3ErrorCode.cs +++ b/src/Shared/runtime/Http3/Frames/Http3ErrorCode.cs @@ -52,38 +52,42 @@ internal enum Http3ErrorCode : long /// IdError = 0x108, /// - /// H3_SETTINGS_ERROR (0x10A): - /// An endpoint detected an error in the payload of a SETTINGS frame: a duplicate setting was detected, - /// a client-only setting was sent by a server, or a server-only setting by a client. + /// H3_SETTINGS_ERROR (0x109): + /// An endpoint detected an error in the payload of a SETTINGS frame. /// SettingsError = 0x109, /// - /// H3_MISSING_SETTINGS (0x10B): + /// H3_MISSING_SETTINGS (0x10A): /// No SETTINGS frame was received at the beginning of the control stream. /// MissingSettings = 0x10a, /// - /// H3_REQUEST_REJECTED (0x10C): + /// H3_REQUEST_REJECTED (0x10B): /// A server rejected a request without performing any application processing. /// RequestRejected = 0x10b, /// - /// H3_REQUEST_CANCELLED (0x10D): + /// H3_REQUEST_CANCELLED (0x10C): /// The request or its response (including pushed response) is cancelled. /// RequestCancelled = 0x10c, /// - /// H3_REQUEST_INCOMPLETE (0x10E): - /// The client?s stream terminated without containing a fully-formed request. + /// H3_REQUEST_INCOMPLETE (0x10D): + /// The client's stream terminated without containing a fully-formed request. /// RequestIncomplete = 0x10d, /// - /// H3_CONNECT_ERROR (0x110): + /// H3_MESSAGE_ERROR (0x10E): + /// An HTTP message was malformed and cannot be processed. + /// + MessageError = 0x10e, + /// + /// H3_CONNECT_ERROR (0x10F): /// The connection established in response to a CONNECT request was reset or abnormally closed. /// ConnectError = 0x10f, /// - /// H3_VERSION_FALLBACK (0x111): + /// H3_VERSION_FALLBACK (0x110): /// The requested operation cannot be served over HTTP/3. The peer should retry over HTTP/1.1. /// VersionFallback = 0x110, diff --git a/src/Shared/runtime/Http3/Frames/Http3FrameType.cs b/src/Shared/runtime/Http3/Frames/Http3FrameType.cs index 08b24cf15f03..841f65677f39 100644 --- a/src/Shared/runtime/Http3/Frames/Http3FrameType.cs +++ b/src/Shared/runtime/Http3/Frames/Http3FrameType.cs @@ -24,7 +24,6 @@ internal enum Http3FrameType : long GoAway = 0x7, ReservedHttp2WindowUpdate = 0x8, ReservedHttp2Continuation = 0x9, - MaxPushId = 0xD, - DuplicatePush = 0xE + MaxPushId = 0xD } }