From 1800a5e3469912438fe874906a5ba5deb7b45188 Mon Sep 17 00:00:00 2001 From: Frederic Lecaille Date: Thu, 14 Dec 2023 14:49:58 +0100 Subject: [PATCH] MINOR: mux-quic-be: Add backend support to QUIC mux. These modifications at least allow the configuration parser to support addresses for connection to servers without such an error: config : proxy 'xxxx' : MUX protocol 'quic' is not usable for server 'yyyy' --- src/mux_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_quic.c b/src/mux_quic.c index 0473cb50f..9343f8d10 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -4149,6 +4149,6 @@ void qcc_show_quic(struct qcc *qcc) } static struct mux_proto_list mux_proto_quic = - { .token = IST("quic"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &qmux_ops }; + { .token = IST("quic"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &qmux_ops }; INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_quic);