mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-03 21:12:06 +02:00
Replace h3_uqs type by qcs in stream callbacks. This change is done in the context of unification between bidi and uni-streams. h3_uqs type will be unneeded when this is achieved.
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/*
|
|
* QPACK decompressor
|
|
*
|
|
* Copyright 2021 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_QPACK_DEC_H
|
|
#define _HAPROXY_QPACK_DEC_H
|
|
|
|
#include <haproxy/mux_quic-t.h>
|
|
|
|
struct http_hdr;
|
|
|
|
/* Internal QPACK processing errors.
|
|
*Nothing to see with the RFC.
|
|
*/
|
|
enum {
|
|
QPACK_ERR_NONE = 0,
|
|
QPACK_ERR_RIC,
|
|
QPACK_ERR_DB,
|
|
QPACK_ERR_TRUNCATED,
|
|
QPACK_ERR_HUFFMAN,
|
|
};
|
|
|
|
struct qpack_dec {
|
|
/* Insert count */
|
|
uint64_t ic;
|
|
/* Known received count */
|
|
uint64_t krc;
|
|
};
|
|
|
|
int qpack_decode_fs(const unsigned char *buf, uint64_t len, struct buffer *tmp,
|
|
struct http_hdr *list);
|
|
int qpack_decode_enc(struct qcs *qcs, void *ctx);
|
|
int qpack_decode_dec(struct qcs *qcs, void *ctx);
|
|
|
|
#endif /* _HAPROXY_QPACK_DEC_H */
|