summaryrefslogtreecommitdiffstats
path: root/src/streaming/compression_lz4.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-11-09 08:36:07 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-11-25 11:21:20 +0000
commiteae52fdaa9298e00f14b0b6256400d200db9c373 (patch)
treea3040a19bd024295ded05370853647bab9d7c225 /src/streaming/compression_lz4.h
parentAdding upstream version 1.47.5. (diff)
downloadnetdata-eae52fdaa9298e00f14b0b6256400d200db9c373.tar.xz
netdata-eae52fdaa9298e00f14b0b6256400d200db9c373.zip
Adding upstream version 2.0.3.upstream/2.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/streaming/compression_lz4.h')
-rw-r--r--src/streaming/compression_lz4.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/streaming/compression_lz4.h b/src/streaming/compression_lz4.h
deleted file mode 100644
index 69f0fadcc..000000000
--- a/src/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