mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-28 17:49:36 -04:00
MINOR: cfgparse: QUIC default server transport parameters init.
This patch is there to initialize the default transport parameters for QUIC as a preparation for one of the QUIC next steps to come: fully support QUIC protocol for haproxy servers.
This commit is contained in:
parent
026a7921a5
commit
0a76901926
1 changed files with 4 additions and 0 deletions
|
|
@ -458,6 +458,10 @@ void init_default_instance()
|
|||
|
||||
defproxy.email_alert.level = LOG_ALERT;
|
||||
defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
|
||||
#if defined(USE_QUIC)
|
||||
quic_transport_params_init(&defproxy.defsrv.quic_params, 0);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
/* Allocate and initialize the frontend of a "peers" section found in
|
||||
|
|
|
|||
Loading…
Reference in a new issue