diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:44 +0000 |
commit | 836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch) | |
tree | 1604da8f482d02effa033c94a84be42bc0c848c3 /streaming/compression_brotli.h | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip |
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'streaming/compression_brotli.h')
-rw-r--r-- | streaming/compression_brotli.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/streaming/compression_brotli.h b/streaming/compression_brotli.h deleted file mode 100644 index 4955e5a82..000000000 --- a/streaming/compression_brotli.h +++ /dev/null @@ -1,15 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#include "compression.h" - -#ifndef NETDATA_STREAMING_COMPRESSION_BROTLI_H -#define NETDATA_STREAMING_COMPRESSION_BROTLI_H - -void rrdpush_compressor_init_brotli(struct compressor_state *state); -void rrdpush_compressor_destroy_brotli(struct compressor_state *state); -size_t rrdpush_compress_brotli(struct compressor_state *state, const char *data, size_t size, const char **out); -size_t rrdpush_decompress_brotli(struct decompressor_state *state, const char *compressed_data, size_t compressed_size); -void rrdpush_decompressor_init_brotli(struct decompressor_state *state); -void rrdpush_decompressor_destroy_brotli(struct decompressor_state *state); - -#endif //NETDATA_STREAMING_COMPRESSION_BROTLI_H |