REORG: quic: use a dedicated module for qc_stream_desc
Regroup all type definitions and functions related to qc_stream_desc in
the source file src/quic_stream.c.
qc_stream_desc complexity will be increased with the development of Tx
multi-buffers. Having a dedicated module is useful to mix it with
pure transport/quic-conn code.
diff --git a/Makefile b/Makefile
index fd1caa2..7c7d26a 100644
--- a/Makefile
+++ b/Makefile
@@ -636,7 +636,8 @@
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/mux_quic.o \
src/cbuf.o src/qpack-dec.o src/qpack-tbl.o src/h3.o src/qpack-enc.o \
- src/hq_interop.o src/cfgparse-quic.o src/quic_loss.o
+ src/hq_interop.o src/cfgparse-quic.o src/quic_loss.o \
+ src/quic_stream.o
endif
ifneq ($(USE_LUA),)