# HG changeset patch # User Vladimir Homutov # Date 1608894088 -10800 # Node ID 046c951e393a123309cbcc861fa9a768b040e8e8 # Parent 13c537def699f5a0d02cee1100fb1ec7cdf0abd4 QUIC: moved all quic sources into src/event/quic. diff --git a/auto/make b/auto/make --- a/auto/make +++ b/auto/make @@ -11,7 +11,8 @@ mkdir -p $NGX_OBJS/src/core $NGX_OBJS/sr $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 diff --git a/auto/modules b/auto/modules --- a/auto/modules +++ b/auto/modules @@ -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 diff --git a/auto/sources b/auto/sources --- a/auto/sources +++ b/auto/sources @@ -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 \ diff --git a/src/event/ngx_event_quic.c b/src/event/quic/ngx_event_quic.c rename from src/event/ngx_event_quic.c rename to src/event/quic/ngx_event_quic.c diff --git a/src/event/ngx_event_quic.h b/src/event/quic/ngx_event_quic.h rename from src/event/ngx_event_quic.h rename to src/event/quic/ngx_event_quic.h diff --git a/src/event/ngx_event_quic_protection.c b/src/event/quic/ngx_event_quic_protection.c rename from src/event/ngx_event_quic_protection.c rename to src/event/quic/ngx_event_quic_protection.c diff --git a/src/event/ngx_event_quic_protection.h b/src/event/quic/ngx_event_quic_protection.h rename from src/event/ngx_event_quic_protection.h rename to src/event/quic/ngx_event_quic_protection.h diff --git a/src/event/ngx_event_quic_transport.c b/src/event/quic/ngx_event_quic_transport.c rename from src/event/ngx_event_quic_transport.c rename to src/event/quic/ngx_event_quic_transport.c diff --git a/src/event/ngx_event_quic_transport.h b/src/event/quic/ngx_event_quic_transport.h rename from src/event/ngx_event_quic_transport.h rename to src/event/quic/ngx_event_quic_transport.h