]> git.kaiwu.me - nginx.git/commit
QUIC: fixed bulding perl module by reducing header pollution.
authorSergey Kandaurov <pluknet@nginx.com>
Wed, 22 Jul 2020 11:48:49 +0000 (14:48 +0300)
committerSergey Kandaurov <pluknet@nginx.com>
Wed, 22 Jul 2020 11:48:49 +0000 (14:48 +0300)
commitca0b9871bc74d7d4548d76eb4d4c2a3a5ebb22ec
tree13fe09ce469e1a2ce973305d2e7b93db8764a524
parent5468904e3be8d1f85ba51de51e01747fa02ea6d7
QUIC: fixed bulding perl module by reducing header pollution.

The ngx_http_perl_module module doesn't have a notion of including additional
search paths through --with-cc-opt, which results in compile error incomplete
type 'enum ssl_encryption_level_t' when building nginx without QUIC support.
The enum is visible from quic event headers and eventually pollutes ngx_core.h.

The fix is to limit including headers to compile units that are real consumers.
src/core/ngx_core.h
src/event/ngx_event_quic.c
src/event/ngx_event_quic_protection.c
src/event/ngx_event_quic_transport.c