From: Sergey Kandaurov Date: Tue, 23 Jun 2020 08:57:00 +0000 (+0300) Subject: QUIC error SERVER_BUSY renamed to CONNECTION_REFUSED in draft-29. X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/%7B@url%7D?a=commitdiff_plain;h=c31e1054034589af9a12119371e502748af61e5a;p=nginx.git QUIC error SERVER_BUSY renamed to CONNECTION_REFUSED in draft-29. --- 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