aboutsummaryrefslogtreecommitdiff
path: root/src/http/v3/ngx_http_v3_module.c
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2022-01-18 12:49:55 +0300
committerVladimir Homutov <vl@nginx.com>2022-01-18 12:49:55 +0300
commit1f97aa71ecaa75dfd646495a13534b10405b500c (patch)
treecce31e1e2566019fbd199dec9784a3bc597064a0 /src/http/v3/ngx_http_v3_module.c
parent8a67a56091a04055edee4d551e78beacaf79c17a (diff)
downloadnginx-1f97aa71ecaa75dfd646495a13534b10405b500c.tar.gz
nginx-1f97aa71ecaa75dfd646495a13534b10405b500c.zip
QUIC: the "quic_active_connection_id_limit" directive.
The directive sets corresponding transport parameter and limits number of created client ids.
Diffstat (limited to 'src/http/v3/ngx_http_v3_module.c')
-rw-r--r--src/http/v3/ngx_http_v3_module.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/http/v3/ngx_http_v3_module.c b/src/http/v3/ngx_http_v3_module.c
index 455b613e1..d274a3bf2 100644
--- a/src/http/v3/ngx_http_v3_module.c
+++ b/src/http/v3/ngx_http_v3_module.c
@@ -104,6 +104,13 @@ static ngx_command_t ngx_http_v3_commands[] = {
0,
NULL },
+ { ngx_string("quic_active_connection_id_limit"),
+ NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_TAKE1,
+ ngx_conf_set_num_slot,
+ NGX_HTTP_SRV_CONF_OFFSET,
+ offsetof(ngx_http_v3_srv_conf_t, quic.active_connection_id_limit),
+ NULL },
+
ngx_null_command
};
@@ -240,6 +247,7 @@ ngx_http_v3_create_srv_conf(ngx_conf_t *cf)
h3scf->quic.gso_enabled = NGX_CONF_UNSET;
h3scf->quic.stream_close_code = NGX_HTTP_V3_ERR_NO_ERROR;
h3scf->quic.stream_reject_code_bidi = NGX_HTTP_V3_ERR_REQUEST_REJECTED;
+ h3scf->quic.active_connection_id_limit = NGX_CONF_UNSET_UINT;
return h3scf;
}
@@ -280,6 +288,10 @@ ngx_http_v3_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
ngx_conf_merge_str_value(conf->quic.host_key, prev->quic.host_key, "");
+ ngx_conf_merge_uint_value(conf->quic.active_connection_id_limit,
+ prev->quic.active_connection_id_limit,
+ 2);
+
if (conf->quic.host_key.len == 0) {
conf->quic.host_key.len = NGX_QUIC_DEFAULT_HOST_KEY_LEN;