# HG changeset patch # User Vladimir Homutov # Date 1590748164 -10800 # Node ID cb149fa03367d1b95c4e1250c87bdddf4897112a # Parent 8b4a0a752723b7cff3cc37ca83299e964b6a1b61 Added propagation of the "wildcard" flag to c->listening. The flags was originally added by 8f038068f4bc, and is propagated correctly in the stream module. With QUIC introduction, http module now uses datagram sockets as well, thus the fix. diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -1795,6 +1795,8 @@ ngx_http_add_listening(ngx_conf_t *cf, n ls->reuseport = addr->opt.reuseport; #endif + ls->wildcard = addr->opt.wildcard; + return ls; }