MINOR: mux_quic: rename qstrm files to qmux

This is a follow-up on the QUIC MUX renaming process. Now most of "qmux"
generic usages as been replaced in favor of "qcm" naming. The next part
of the renaming is to replace "qstrm" naming with "qmux" for stuffs
related to the new QMux protocol specifically.

This is first applied on filenames. As with the previous renaming,
Makefile and include statements are updated as well to prevent
compilation issues.
This commit is contained in:
Amaury Denoyelle 2026-05-11 10:27:01 +02:00
parent e68d4c9c36
commit 57ab169747
6 changed files with 12 additions and 12 deletions

View File

@ -671,7 +671,7 @@ OPTIONS_OBJS += src/mux_quic.o src/h3.o src/quic_rx.o src/quic_tx.o \
src/quic_cc_nocc.o src/quic_cc.o src/quic_pacing.o \
src/h3_stats.o src/quic_stats.o src/qpack-enc.o \
src/qpack-tbl.o src/quic_cc_drs.o src/quic_fctl.o \
src/quic_enc.o src/mux_quic_qstrm.o src/xprt_qstrm.o \
src/quic_enc.o src/qcm_qmux.o src/xprt_qmux.o \
src/mpring.o
endif

View File

@ -1,5 +1,5 @@
#ifndef _HAPROXY_MUX_QUIC_QSTRM_H
#define _HAPROXY_MUX_QUIC_QSTRM_H
#ifndef _HAPROXY_QCM_QMUX_H
#define _HAPROXY_QCM_QMUX_H
#include <haproxy/mux_quic.h>
@ -7,4 +7,4 @@ int qcc_qstrm_recv(struct qcc *qcc);
int qcc_qstrm_send_frames(struct qcc *qcc, struct list *frms);
#endif /* _HAPROXY_MUX_QUIC_QSTRM_H */
#endif /* _HAPROXY_QCM_QMUX_H */

View File

@ -1,5 +1,5 @@
#ifndef _HAPROXY_XPRT_QSTRM_H
#define _HAPROXY_XPRT_QSTRM_H
#ifndef _HAPROXY_XPRT_QMUX_H
#define _HAPROXY_XPRT_QMUX_H
#include <stddef.h>
@ -11,4 +11,4 @@ const struct quic_transport_params *xprt_qstrm_rparams(const void *context);
size_t xprt_qstrm_xfer_rxbuf(void *context, struct buffer *out);
#endif /* _HAPROXY_XPRT_QSTRM_H */
#endif /* _HAPROXY_XPRT_QMUX_H */

View File

@ -11,11 +11,11 @@
#include <haproxy/global-t.h>
#include <haproxy/h3.h>
#include <haproxy/list.h>
#include <haproxy/mux_quic_qstrm.h>
#include <haproxy/ncbuf.h>
#include <haproxy/pool.h>
#include <haproxy/proxy.h>
#include <haproxy/qcm_http.h>
#include <haproxy/qcm_qmux.h>
#include <haproxy/qcm_trace.h>
#include <haproxy/quic_conn.h>
#include <haproxy/quic_enc.h>
@ -34,7 +34,7 @@
#include <haproxy/stconn.h>
#include <haproxy/time.h>
#include <haproxy/trace.h>
#include <haproxy/xprt_qstrm.h>
#include <haproxy/xprt_qmux.h>
#include <haproxy/xref.h>
DECLARE_TYPED_POOL(pool_head_qcc, "qcc", struct qcc);

View File

@ -1,4 +1,4 @@
#include <haproxy/mux_quic_qstrm.h>
#include <haproxy/qcm_qmux.h>
#include <haproxy/api.h>
#include <haproxy/buf.h>

View File

@ -1,4 +1,4 @@
#include <haproxy/xprt_qstrm.h>
#include <haproxy/xprt_qmux.h>
#include <haproxy/api.h>
#include <haproxy/buf.h>
@ -7,8 +7,8 @@
#include <haproxy/fd.h>
#include <haproxy/global.h>
#include <haproxy/mux_quic.h>
#include <haproxy/mux_quic_qstrm.h>
#include <haproxy/pool.h>
#include <haproxy/qcm_qmux.h>
#include <haproxy/quic_frame.h>
#include <haproxy/quic_tp-t.h>