From 8df0b6bb2c3477cd0666b796b4e1a7373c4a600c Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Tue, 13 Apr 2021 14:41:20 +0300 Subject: QUIC: separate files for output and ack related processing. --- auto/modules | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'auto/modules') diff --git a/auto/modules b/auto/modules index ba0131da6..925741537 100644 --- a/auto/modules +++ b/auto/modules @@ -1346,14 +1346,18 @@ if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then src/event/quic/ngx_event_quic_frames.h \ src/event/quic/ngx_event_quic_connid.h \ src/event/quic/ngx_event_quic_migration.h \ - src/event/quic/ngx_event_quic_streams.h" + src/event/quic/ngx_event_quic_streams.h \ + src/event/quic/ngx_event_quic_ack.h \ + src/event/quic/ngx_event_quic_output.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_frames.c \ src/event/quic/ngx_event_quic_connid.c \ src/event/quic/ngx_event_quic_migration.c \ - src/event/quic/ngx_event_quic_streams.c" + src/event/quic/ngx_event_quic_streams.c \ + src/event/quic/ngx_event_quic_ack.c \ + src/event/quic/ngx_event_quic_output.c" ngx_module_libs= ngx_module_link=YES -- cgit