diff options
| author | Vladimir Homutov <vl@nginx.com> | 2021-04-13 14:40:00 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2021-04-13 14:40:00 +0300 |
| commit | 9326156b8b2599a56632a3afd5f66a0923d595fe (patch) | |
| tree | a824969406ff1d8600c63efa04eaf5246255a5ed /auto/modules | |
| parent | 87ca8c087ae28ddf10e44a80714deb5570b07903 (diff) | |
| download | nginx-9326156b8b2599a56632a3afd5f66a0923d595fe.tar.gz nginx-9326156b8b2599a56632a3afd5f66a0923d595fe.tar.bz2 | |
QUIC: separate files for stream related processing.
Diffstat (limited to 'auto/modules')
| -rw-r--r-- | auto/modules | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/auto/modules b/auto/modules index a35185741..ba0131da6 100644 --- a/auto/modules +++ b/auto/modules @@ -1345,13 +1345,15 @@ if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then src/event/quic/ngx_event_quic_connection.h \ 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_migration.h \ + src/event/quic/ngx_event_quic_streams.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_migration.c \ + src/event/quic/ngx_event_quic_streams.c" ngx_module_libs= ngx_module_link=YES |
