comparison auto/modules @ 8737:76f476ce4d31 quic

QUIC: distinct files for connection migration. The connection migration-related code from quic.c with dependencies is moved into separate file.
author Vladimir Homutov <vl@nginx.com>
date Wed, 31 Mar 2021 14:57:15 +0300
parents 714e9af983de
children e0cb1e58ca13
comparison
equal deleted inserted replaced
8736:714e9af983de 8737:76f476ce4d31
1340 ngx_module_name=ngx_quic_module 1340 ngx_module_name=ngx_quic_module
1341 ngx_module_incs= 1341 ngx_module_incs=
1342 ngx_module_deps="src/event/quic/ngx_event_quic.h \ 1342 ngx_module_deps="src/event/quic/ngx_event_quic.h \
1343 src/event/quic/ngx_event_quic_transport.h \ 1343 src/event/quic/ngx_event_quic_transport.h \
1344 src/event/quic/ngx_event_quic_protection.h \ 1344 src/event/quic/ngx_event_quic_protection.h \
1345 src/event/quic/ngx_event_quic_connection.h" 1345 src/event/quic/ngx_event_quic_connection.h \
1346 src/event/quic/ngx_event_quic_migration.h"
1346 ngx_module_srcs="src/event/quic/ngx_event_quic.c \ 1347 ngx_module_srcs="src/event/quic/ngx_event_quic.c \
1347 src/event/quic/ngx_event_quic_transport.c \ 1348 src/event/quic/ngx_event_quic_transport.c \
1348 src/event/quic/ngx_event_quic_protection.c" 1349 src/event/quic/ngx_event_quic_protection.c \
1350 src/event/quic/ngx_event_quic_migration.c"
1349 1351
1350 ngx_module_libs= 1352 ngx_module_libs=
1351 ngx_module_link=YES 1353 ngx_module_link=YES
1352 ngx_module_order= 1354 ngx_module_order=
1353 1355