From 79b66760a19599fa4b2cb3b9aa3c3e7e937df8ae Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Wed, 31 Mar 2021 14:57:15 +0300 Subject: QUIC: distinct files for connection migration. The connection migration-related code from quic.c with dependencies is moved into separate file. --- auto/modules | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'auto') diff --git a/auto/modules b/auto/modules index 079b09bc4..0098d4c54 100644 --- a/auto/modules +++ b/auto/modules @@ -1342,10 +1342,12 @@ if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then ngx_module_deps="src/event/quic/ngx_event_quic.h \ src/event/quic/ngx_event_quic_transport.h \ src/event/quic/ngx_event_quic_protection.h \ - src/event/quic/ngx_event_quic_connection.h" + src/event/quic/ngx_event_quic_connection.h \ + src/event/quic/ngx_event_quic_migration.h" ngx_module_srcs="src/event/quic/ngx_event_quic.c \ src/event/quic/ngx_event_quic_transport.c \ - src/event/quic/ngx_event_quic_protection.c" + src/event/quic/ngx_event_quic_protection.c \ + src/event/quic/ngx_event_quic_migration.c" ngx_module_libs= ngx_module_link=YES -- cgit