From 2f5bcafdde60c722fe5cd28965613abafb451acb Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Tue, 13 Apr 2021 12:38:34 +0300 Subject: QUIC: normalize header inclusion. Stop including QUIC headers with no user-serviceable parts inside. This allows to provide a much cleaner QUIC interface. To cope with that, ngx_quic_derive_key() is now explicitly exported for v3 and quic modules. Additionally, this completely hides the ngx_quic_keys_t internal type. --- src/http/modules/ngx_http_quic_module.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/http/modules') diff --git a/src/http/modules/ngx_http_quic_module.c b/src/http/modules/ngx_http_quic_module.c index 5282bf4bb..b7661b42c 100644 --- a/src/http/modules/ngx_http_quic_module.c +++ b/src/http/modules/ngx_http_quic_module.c @@ -9,8 +9,6 @@ #include #include -#include - static ngx_int_t ngx_http_variable_quic(ngx_http_request_t *r, ngx_http_variable_value_t *v, uintptr_t data); -- cgit