summaryrefslogtreecommitdiffstats
path: root/include/haproxy/qmux_http.h
blob: a7dbe7cc329ad79d06505b5e285ef513cc4b271a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _HAPROXY_MUX_QUIC_HTTP_H
#define _HAPROXY_MUX_QUIC_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);
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_MUX_QUIC_HTTP_H */