mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add the H3_MESSAGE_ERROR
This commit is contained in:
parent
9693a46d31
commit
8a84201ce4
1 changed files with 3 additions and 0 deletions
|
@ -23,6 +23,7 @@ const (
|
|||
errorRequestRejected errorCode = 0x10b
|
||||
errorRequestCanceled errorCode = 0x10c
|
||||
errorRequestIncomplete errorCode = 0x10d
|
||||
errorMessageError errorCode = 0x10e
|
||||
errorConnectError errorCode = 0x10f
|
||||
errorVersionFallback errorCode = 0x110
|
||||
)
|
||||
|
@ -57,6 +58,8 @@ func (e errorCode) String() string {
|
|||
return "H3_REQUEST_CANCELLED"
|
||||
case errorRequestIncomplete:
|
||||
return "H3_INCOMPLETE_REQUEST"
|
||||
case errorMessageError:
|
||||
return "H3_MESSAGE_ERROR"
|
||||
case errorConnectError:
|
||||
return "H3_CONNECT_ERROR"
|
||||
case errorVersionFallback:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue