mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 09:07:02 +02:00
13 lines
327 B
C
13 lines
327 B
C
#ifndef QPACK_ENC_H_
|
|
#define QPACK_ENC_H_
|
|
|
|
#include <haproxy/istbuf.h>
|
|
|
|
struct buffer;
|
|
|
|
int qpack_encode_field_section_line(struct buffer *out);
|
|
int qpack_encode_int_status(struct buffer *out, unsigned int status);
|
|
int qpack_encode_header(struct buffer *out, const struct ist n, const struct ist v);
|
|
|
|
#endif /* QPACK_ENC_H_ */
|