changeset 8347:a5141e6b3214 quic

Fixed includes in quic headers.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Apr 2020 12:06:24 +0300
parents 4e4485793418
children d42b50d239f4
files src/event/ngx_event_quic.h src/event/ngx_event_quic_protection.h src/event/ngx_event_quic_transport.h
diffstat 3 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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)
 
 
--- 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   */