mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MEDIUM: quic: Fix build with openssl-compat
As the QUIC options have been split into backend and frontend, there is no more GTUNE_QUIC_LISTEN_OFF to be found in global.tune.options, look for QUIC_TUNE_FE_LISTEN_OFF in quic_tune.fe instead. This should fix the build with USE_QUIC and USE_QUIC_OPENSSL_COMPAT.
This commit is contained in:
parent
837351245a
commit
259b1e1c18
1 changed files with 1 additions and 1 deletions
|
|
@ -4312,7 +4312,7 @@ init_proxies_list_stage2:
|
|||
|
||||
# ifdef USE_QUIC_OPENSSL_COMPAT
|
||||
/* store the last checked bind_conf in bind_conf */
|
||||
if (!(global.tune.options & GTUNE_QUIC_LISTEN_OFF) &&
|
||||
if (!(quic_tune.fe.opts & QUIC_TUNE_FE_LISTEN_OFF) &&
|
||||
!(global.tune.options & GTUNE_LIMITED_QUIC) &&
|
||||
listener->bind_conf != bind_conf) {
|
||||
bind_conf = listener->bind_conf;
|
||||
|
|
|
|||
Loading…
Reference in a new issue