]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: Enable some quic, h3 and qpack modules compilation.
authorFrédéric Lécaille <flecaille@haproxy.com>
Tue, 25 May 2021 07:12:35 +0000 (09:12 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 23 Sep 2021 13:27:25 +0000 (15:27 +0200)
Enable src/h3.c compilation for h3, src/qpack-dec.c and sr/qpack-tbl.c
compilation for qpack, and src/mux_quic.c for the QUIC mux.

Makefile

index 38412275c6c3433684d902d45765f0f1f72ead3f..0cb154156491dd5baade04760a62d560f58fcbdd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -589,7 +589,8 @@ OPTIONS_OBJS  += src/ssl_sample.o src/ssl_sock.o src/ssl_crtlist.o src/ssl_ckch.
 endif
 ifneq ($(USE_QUIC),)
 OPTIONS_OBJS += src/quic_sock.o src/proto_quic.o src/xprt_quic.o src/quic_tls.o \
-                src/quic_frame.o src/quic_cc.o src/quic_cc_newreno.o
+                src/quic_frame.o src/quic_cc.o src/quic_cc_newreno.o src/mux_quic.o \
+                src/qpack-dec.o src/qpack-tbl.o src/h3.o
 endif
 
 ifneq ($(USE_LUA),)