diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-06-08 16:19:01 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-06-08 16:19:01 +0400 |
commit | 854e41fec24e1f292ec5a951e7bfc9377afc0905 (patch) | |
tree | b4440146a0792e71707b931877b4d6a8c7407f6f /src | |
parent | a1f32e5871823aeb2e03dcf8a67b00ddff64f478 (diff) | |
download | nginx-854e41fec24e1f292ec5a951e7bfc9377afc0905.tar.gz nginx-854e41fec24e1f292ec5a951e7bfc9377afc0905.zip |
HTTP/3: updated SETTINGS_MAX_FIELD_SECTION_SIZE name.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/v3/ngx_http_v3.h | 2 | ||||
-rw-r--r-- | src/http/v3/ngx_http_v3_table.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/http/v3/ngx_http_v3.h b/src/http/v3/ngx_http_v3.h index b54d9aee0..a3544ebc4 100644 --- a/src/http/v3/ngx_http_v3.h +++ b/src/http/v3/ngx_http_v3.h @@ -39,7 +39,7 @@ #define NGX_HTTP_V3_FRAME_MAX_PUSH_ID 0x0d #define NGX_HTTP_V3_PARAM_MAX_TABLE_CAPACITY 0x01 -#define NGX_HTTP_V3_PARAM_MAX_HEADER_LIST_SIZE 0x06 +#define NGX_HTTP_V3_PARAM_MAX_FIELD_SECTION_SIZE 0x06 #define NGX_HTTP_V3_PARAM_BLOCKED_STREAMS 0x07 #define NGX_HTTP_V3_MAX_TABLE_CAPACITY 4096 diff --git a/src/http/v3/ngx_http_v3_table.c b/src/http/v3/ngx_http_v3_table.c index 22dc37901..7e07a15b9 100644 --- a/src/http/v3/ngx_http_v3_table.c +++ b/src/http/v3/ngx_http_v3_table.c @@ -699,9 +699,10 @@ ngx_http_v3_set_param(ngx_connection_t *c, uint64_t id, uint64_t value) "http3 param QPACK_MAX_TABLE_CAPACITY:%uL", value); break; - case NGX_HTTP_V3_PARAM_MAX_HEADER_LIST_SIZE: + case NGX_HTTP_V3_PARAM_MAX_FIELD_SECTION_SIZE: ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, - "http3 param SETTINGS_MAX_HEADER_LIST_SIZE:%uL", value); + "http3 param SETTINGS_MAX_FIELD_SECTION_SIZE:%uL", + value); break; case NGX_HTTP_V3_PARAM_BLOCKED_STREAMS: |