]> git.kaiwu.me - nginx.git/commitdiff
QUIC: moved all quic sources into src/event/quic.
authorVladimir Homutov <vl@nginx.com>
Fri, 25 Dec 2020 11:01:28 +0000 (14:01 +0300)
committerVladimir Homutov <vl@nginx.com>
Fri, 25 Dec 2020 11:01:28 +0000 (14:01 +0300)
auto/make
auto/modules
auto/sources
src/event/quic/ngx_event_quic.c [moved from src/event/ngx_event_quic.c with 100% similarity]
src/event/quic/ngx_event_quic.h [moved from src/event/ngx_event_quic.h with 100% similarity]
src/event/quic/ngx_event_quic_protection.c [moved from src/event/ngx_event_quic_protection.c with 100% similarity]
src/event/quic/ngx_event_quic_protection.h [moved from src/event/ngx_event_quic_protection.h with 100% similarity]
src/event/quic/ngx_event_quic_transport.c [moved from src/event/ngx_event_quic_transport.c with 100% similarity]
src/event/quic/ngx_event_quic_transport.h [moved from src/event/ngx_event_quic_transport.h with 100% similarity]

index 98ae071537ea22f1011c9f5d600cec21a8bac558..2b8f6ea41643a1ab6e098edd6b5b4be8cdfeebfa 100644 (file)
--- a/auto/make
+++ b/auto/make
@@ -11,7 +11,8 @@ mkdir -p $NGX_OBJS/src/core $NGX_OBJS/src/event $NGX_OBJS/src/event/modules \
          $NGX_OBJS/src/http/modules $NGX_OBJS/src/http/modules/perl \
          $NGX_OBJS/src/mail \
          $NGX_OBJS/src/stream \
-         $NGX_OBJS/src/misc
+         $NGX_OBJS/src/misc \
+         $NGX_OBJS/src/event/quic
 
 
 ngx_objs_dir=$NGX_OBJS$ngx_regex_dirsep
index 3f2430b62782a0790efb982472bc7a4aa95462b0..82a887eb1411e737ec2cbbc86ccc2a75c8d39408 100644 (file)
@@ -1327,13 +1327,13 @@ if [ $USE_OPENSSL = YES ]; then
 
     if [ $USE_OPENSSL_QUIC = YES ]; then
         ngx_module_deps="$ngx_module_deps \
-                         src/event/ngx_event_quic.h \
-                         src/event/ngx_event_quic_transport.h \
-                         src/event/ngx_event_quic_protection.h"
+                         src/event/quic/ngx_event_quic.h \
+                         src/event/quic/ngx_event_quic_transport.h \
+                         src/event/quic/ngx_event_quic_protection.h"
         ngx_module_srcs="$ngx_module_srcs \
-                         src/event/ngx_event_quic.c \
-                         src/event/ngx_event_quic_transport.c \
-                         src/event/ngx_event_quic_protection.c"
+                         src/event/quic/ngx_event_quic.c \
+                         src/event/quic/ngx_event_quic_transport.c \
+                         src/event/quic/ngx_event_quic_protection.c"
     fi
 
     . auto/module
index 3dad11132c483a13202ae3f4df7b8253ed855ef7..37276aa94984ec7ca9e9c531b662b5f1e544aa12 100644 (file)
@@ -83,7 +83,7 @@ CORE_SRCS="src/core/nginx.c \
 
 EVENT_MODULES="ngx_events_module ngx_event_core_module"
 
-EVENT_INCS="src/event src/event/modules"
+EVENT_INCS="src/event src/event/modules src/event/quic"
 
 EVENT_DEPS="src/event/ngx_event.h \
             src/event/ngx_event_timer.h \