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_lz4.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_lz4.h')
-rw-r--r-- | streaming/compression_lz4.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/streaming/compression_lz4.h b/streaming/compression_lz4.h deleted file mode 100644 index 69f0fadcc..000000000 --- a/streaming/compression_lz4.h +++ /dev/null @@ -1,19 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#include "compression.h" - -#ifndef NETDATA_STREAMING_COMPRESSION_LZ4_H -#define NETDATA_STREAMING_COMPRESSION_LZ4_H - -#ifdef ENABLE_LZ4 - -void rrdpush_compressor_init_lz4(struct compressor_state *state); -void rrdpush_compressor_destroy_lz4(struct compressor_state *state); -size_t rrdpush_compress_lz4(struct compressor_state *state, const char *data, size_t size, const char **out); -size_t rrdpush_decompress_lz4(struct decompressor_state *state, const char *compressed_data, size_t compressed_size); -void rrdpush_decompressor_init_lz4(struct decompressor_state *state); -void rrdpush_decompressor_destroy_lz4(struct decompressor_state *state); - -#endif // ENABLE_LZ4 - -#endif //NETDATA_STREAMING_COMPRESSION_LZ4_H |