@@ -52,38 +52,42 @@ internal enum Http3ErrorCode : long
52
52
/// </summary>
53
53
IdError = 0x108 ,
54
54
/// <summary>
55
- /// H3_SETTINGS_ERROR (0x10A):
56
- /// An endpoint detected an error in the payload of a SETTINGS frame: a duplicate setting was detected,
57
- /// a client-only setting was sent by a server, or a server-only setting by a client.
55
+ /// H3_SETTINGS_ERROR (0x109):
56
+ /// An endpoint detected an error in the payload of a SETTINGS frame.
58
57
/// </summary>
59
58
SettingsError = 0x109 ,
60
59
/// <summary>
61
- /// H3_MISSING_SETTINGS (0x10B ):
60
+ /// H3_MISSING_SETTINGS (0x10A ):
62
61
/// No SETTINGS frame was received at the beginning of the control stream.
63
62
/// </summary>
64
63
MissingSettings = 0x10a ,
65
64
/// <summary>
66
- /// H3_REQUEST_REJECTED (0x10C ):
65
+ /// H3_REQUEST_REJECTED (0x10B ):
67
66
/// A server rejected a request without performing any application processing.
68
67
/// </summary>
69
68
RequestRejected = 0x10b ,
70
69
/// <summary>
71
- /// H3_REQUEST_CANCELLED (0x10D ):
70
+ /// H3_REQUEST_CANCELLED (0x10C ):
72
71
/// The request or its response (including pushed response) is cancelled.
73
72
/// </summary>
74
73
RequestCancelled = 0x10c ,
75
74
/// <summary>
76
- /// H3_REQUEST_INCOMPLETE (0x10E ):
77
- /// The client? s stream terminated without containing a fully-formed request.
75
+ /// H3_REQUEST_INCOMPLETE (0x10D ):
76
+ /// The client' s stream terminated without containing a fully-formed request.
78
77
/// </summary>
79
78
RequestIncomplete = 0x10d ,
80
79
/// <summary>
81
- /// H3_CONNECT_ERROR (0x110):
80
+ /// H3_MESSAGE_ERROR (0x10E):
81
+ /// An HTTP message was malformed and cannot be processed.
82
+ /// </summary>
83
+ MessageError = 0x10e ,
84
+ /// <summary>
85
+ /// H3_CONNECT_ERROR (0x10F):
82
86
/// The connection established in response to a CONNECT request was reset or abnormally closed.
83
87
/// </summary>
84
88
ConnectError = 0x10f ,
85
89
/// <summary>
86
- /// H3_VERSION_FALLBACK (0x111 ):
90
+ /// H3_VERSION_FALLBACK (0x110 ):
87
91
/// The requested operation cannot be served over HTTP/3. The peer should retry over HTTP/1.1.
88
92
/// </summary>
89
93
VersionFallback = 0x110 ,
0 commit comments