mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
send an INVALID_TOKEN error when receiving an invalid token
This commit is contained in:
parent
3e083d19f4
commit
e57caf0bae
5 changed files with 153 additions and 16 deletions
|
@ -22,6 +22,7 @@ const (
|
|||
TransportParameterError ErrorCode = 0x8
|
||||
ConnectionIDLimitError ErrorCode = 0x9
|
||||
ProtocolViolation ErrorCode = 0xa
|
||||
InvalidToken ErrorCode = 0xb
|
||||
CryptoBufferExceeded ErrorCode = 0xd
|
||||
)
|
||||
|
||||
|
@ -69,6 +70,8 @@ func (e ErrorCode) String() string {
|
|||
return "CONNECTION_ID_LIMIT_ERROR"
|
||||
case ProtocolViolation:
|
||||
return "PROTOCOL_VIOLATION"
|
||||
case InvalidToken:
|
||||
return "INVALID_TOKEN"
|
||||
case CryptoBufferExceeded:
|
||||
return "CRYPTO_BUFFER_EXCEEDED"
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue