comparison src/http/modules/ngx_http_quic_module.c @ 8895:4b2d259bdadd quic

QUIC: connections with wrong ALPN protocols are now rejected. Previously, it was not enforced in the stream module. Now, since b9e02e9b2f1d it is possible to specify protocols. Since ALPN is always required, the 'require_alpn' setting is now obsolete.
author Vladimir Homutov <vl@nginx.com>
date Wed, 03 Nov 2021 13:36:21 +0300
parents 74b43926b470
children 41caf5410110
comparison
equal deleted inserted replaced
8894:de7b9af30fc6 8895:4b2d259bdadd
329 conf->tp.disable_active_migration = NGX_CONF_UNSET; 329 conf->tp.disable_active_migration = NGX_CONF_UNSET;
330 conf->tp.active_connection_id_limit = NGX_CONF_UNSET_UINT; 330 conf->tp.active_connection_id_limit = NGX_CONF_UNSET_UINT;
331 331
332 conf->retry = NGX_CONF_UNSET; 332 conf->retry = NGX_CONF_UNSET;
333 conf->gso_enabled = NGX_CONF_UNSET; 333 conf->gso_enabled = NGX_CONF_UNSET;
334 conf->require_alpn = 1;
335 334
336 return conf; 335 return conf;
337 } 336 }
338 337
339 338