summaryrefslogtreecommitdiffstats
path: root/include/haproxy/qpack-enc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/haproxy/qpack-enc.h')
-rw-r--r--include/haproxy/qpack-enc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/haproxy/qpack-enc.h b/include/haproxy/qpack-enc.h
new file mode 100644
index 0000000..0126937
--- /dev/null
+++ b/include/haproxy/qpack-enc.h
@@ -0,0 +1,12 @@
+#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_ */