diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-04-21 12:06:24 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-04-21 12:06:24 +0300 |
commit | 10bda6e11b91fe67c4489ab5e0347355fa6091cb (patch) | |
tree | 14faea0d69b82945590dde519487c684b0336658 | |
parent | 07699053c03de69b5482c4cc2547993fae3982e6 (diff) | |
download | nginx-10bda6e11b91fe67c4489ab5e0347355fa6091cb.tar.gz nginx-10bda6e11b91fe67c4489ab5e0347355fa6091cb.zip |
Fixed includes in quic headers.
-rw-r--r-- | src/event/ngx_event_quic.h | 3 | ||||
-rw-r--r-- | src/event/ngx_event_quic_protection.h | 4 | ||||
-rw-r--r-- | src/event/ngx_event_quic_transport.h | 3 |
3 files changed, 8 insertions, 2 deletions
diff --git a/src/event/ngx_event_quic.h b/src/event/ngx_event_quic.h index 0dfc9b2e7..034cf48ca 100644 --- a/src/event/ngx_event_quic.h +++ b/src/event/ngx_event_quic.h @@ -8,7 +8,8 @@ #define _NGX_EVENT_QUIC_H_INCLUDED_ -#include <ngx_event_openssl.h> +#include <ngx_config.h> +#include <ngx_core.h> #define NGX_QUIC_DRAFT_VERSION 27 diff --git a/src/event/ngx_event_quic_protection.h b/src/event/ngx_event_quic_protection.h index b19f9f210..befb7ef66 100644 --- a/src/event/ngx_event_quic_protection.h +++ b/src/event/ngx_event_quic_protection.h @@ -8,6 +8,10 @@ #define _NGX_EVENT_QUIC_PROTECTION_H_INCLUDED_ +#include <ngx_config.h> +#include <ngx_core.h> + + #define NGX_QUIC_ENCRYPTION_LAST ((ssl_encryption_application) + 1) diff --git a/src/event/ngx_event_quic_transport.h b/src/event/ngx_event_quic_transport.h index 2c3753e50..761db57c1 100644 --- a/src/event/ngx_event_quic_transport.h +++ b/src/event/ngx_event_quic_transport.h @@ -8,7 +8,8 @@ #define _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ -#include <ngx_event_openssl.h> +#include <ngx_config.h> +#include <ngx_core.h> #define ngx_quic_long_pkt(flags) ((flags) & 0x80) /* 17.2 */ |