QUIC error SERVER_BUSY renamed to CONNECTION_REFUSED in draft-29.

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

View File

@ -91,7 +91,7 @@ static ngx_int_t ngx_quic_parse_transport_param(u_char *p, u_char *end,
static char *ngx_quic_errors[] = {
"NO_ERROR",
"INTERNAL_ERROR",
"SERVER_BUSY",
"CONNECTION_REFUSED",
"FLOW_CONTROL_ERROR",
"STREAM_LIMIT_ERROR",
"STREAM_STATE_ERROR",

View File

@ -77,7 +77,7 @@
/* 22.4. QUIC Transport Error Codes Registry */
#define NGX_QUIC_ERR_NO_ERROR 0x00
#define NGX_QUIC_ERR_INTERNAL_ERROR 0x01
#define NGX_QUIC_ERR_SERVER_BUSY 0x02
#define NGX_QUIC_ERR_CONNECTION_REFUSED 0x02
#define NGX_QUIC_ERR_FLOW_CONTROL_ERROR 0x03
#define NGX_QUIC_ERR_STREAM_LIMIT_ERROR 0x04
#define NGX_QUIC_ERR_STREAM_STATE_ERROR 0x05