From c4f5b50c47a867dfb72f80a5c3dd0e87508e0502 Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Thu, 29 Apr 2021 15:35:02 +0300 Subject: QUIC: connection migration. The patch adds proper transitions between multiple networking addresses that can be used by a single quic connection. New networking paths are validated using PATH_CHALLENGE/PATH_RESPONSE frames. --- auto/modules | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'auto/modules') diff --git a/auto/modules b/auto/modules index 6d5a61e22..95b722d8c 100644 --- a/auto/modules +++ b/auto/modules @@ -1350,7 +1350,8 @@ if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then src/event/quic/ngx_event_quic_ssl.h \ src/event/quic/ngx_event_quic_tokens.h \ src/event/quic/ngx_event_quic_ack.h \ - src/event/quic/ngx_event_quic_output.h" + src/event/quic/ngx_event_quic_output.h \ + src/event/quic/ngx_event_quic_socket.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 \ @@ -1361,7 +1362,8 @@ if [ $USE_OPENSSL$USE_OPENSSL_QUIC = YESYES ]; then src/event/quic/ngx_event_quic_ssl.c \ src/event/quic/ngx_event_quic_tokens.c \ src/event/quic/ngx_event_quic_ack.c \ - src/event/quic/ngx_event_quic_output.c" + src/event/quic/ngx_event_quic_output.c \ + src/event/quic/ngx_event_quic_socket.c" ngx_module_libs= ngx_module_link=YES -- cgit