Define KEY_UPDATE_ERROR from quic-tls-24.

This commit is contained in:
Sergey Kandaurov 2020-06-23 11:57:00 +03:00
parent 157da97d7a
commit 82519e1af2
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ static char *ngx_quic_errors[] = {
"INVALID_TOKEN", "INVALID_TOKEN",
"APPLICATION_ERROR", "APPLICATION_ERROR",
"CRYPTO_BUFFER_EXCEEDED", "CRYPTO_BUFFER_EXCEEDED",
"unknown error 0xE", "KEY_UPDATE_ERROR",
"unknown error 0xF", "unknown error 0xF",
"CRYPTO_ERROR", "CRYPTO_ERROR",
}; };

View File

@ -89,7 +89,7 @@
#define NGX_QUIC_ERR_INVALID_TOKEN 0x0B #define NGX_QUIC_ERR_INVALID_TOKEN 0x0B
#define NGX_QUIC_ERR_APPLICATION_ERROR 0x0C #define NGX_QUIC_ERR_APPLICATION_ERROR 0x0C
#define NGX_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED 0x0D #define NGX_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED 0x0D
/* 0xE is not defined */ #define NGX_QUIC_ERR_KEY_UPDATE_ERROR 0x0E
/* 0xF is not defined */ /* 0xF is not defined */
#define NGX_QUIC_ERR_CRYPTO_ERROR 0x10 #define NGX_QUIC_ERR_CRYPTO_ERROR 0x10