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'
This commit is contained in:
Frederic Lecaille 2023-12-14 14:49:58 +01:00
parent b57eea3bf3
commit c6d79ebede

View File

@ -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);