mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-27 11:52:34 -04:00
This patch is the first one of the renaming serie, affecting the QUIC MUX module. The objective is to remove older "qmux" naming which was used as a generic identifier. Now it should be restricted to the QMux experimental protocol. A new "qcm" naming will replace the generic usage. The current patch renames the files themselves. Token "qmux" is replaced by the new "qcm" identifier. Makefile and include statements are adjusted as required.
20 lines
542 B
C
20 lines
542 B
C
#ifndef _HAPROXY_QCM_HTTP_H
|
|
#define _HAPROXY_QCM_HTTP_H
|
|
|
|
#ifdef USE_QUIC
|
|
|
|
#include <haproxy/buf.h>
|
|
#include <haproxy/mux_quic.h>
|
|
|
|
size_t qcs_http_rcv_buf(struct qcs *qcs, struct buffer *buf, size_t count,
|
|
char *fin);
|
|
|
|
int qcs_http_handle_standalone_fin(struct qcs *qcs);
|
|
|
|
size_t qcs_http_snd_buf(struct qcs *qcs, struct buffer *buf, size_t count,
|
|
char *fin);
|
|
size_t qcs_http_reset_buf(struct qcs *qcs, struct buffer *buf, size_t count);
|
|
|
|
#endif /* USE_QUIC */
|
|
|
|
#endif /* _HAPROXY_QCM_HTTP_H */
|