send an INVALID_TOKEN error when receiving an invalid token

This commit is contained in:
Marten Seemann 2020-02-24 11:18:36 +07:00
parent 3e083d19f4
commit e57caf0bae
5 changed files with 153 additions and 16 deletions

View file

@ -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: