diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2020-06-23 11:57:00 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-06-23 11:57:00 +0300 |
| commit | c31e1054034589af9a12119371e502748af61e5a (patch) | |
| tree | d11b5a02ebe9c0d93fdd54e860fc74ae1fc02dbd /src | |
| parent | f1fdf6901b197f226bbb2bdba9dccf2d502038be (diff) | |
| download | nginx-c31e1054034589af9a12119371e502748af61e5a.tar.gz nginx-c31e1054034589af9a12119371e502748af61e5a.tar.bz2 | |
QUIC error SERVER_BUSY renamed to CONNECTION_REFUSED in draft-29.
Diffstat (limited to 'src')
| -rw-r--r-- | src/event/ngx_event_quic_transport.c | 2 | ||||
| -rw-r--r-- | src/event/ngx_event_quic_transport.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/event/ngx_event_quic_transport.c b/src/event/ngx_event_quic_transport.c index 348580ae8..950b2ad3a 100644 --- a/src/event/ngx_event_quic_transport.c +++ b/src/event/ngx_event_quic_transport.c @@ -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", diff --git a/src/event/ngx_event_quic_transport.h b/src/event/ngx_event_quic_transport.h index cfa35ab78..d85fd34bb 100644 --- a/src/event/ngx_event_quic_transport.h +++ b/src/event/ngx_event_quic_transport.h @@ -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 |
