aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/compression.hh
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-05-03 22:23:02 +0200
committereldritch horrors <pennae@lix.systems>2024-06-19 10:50:12 +0000
commit67f778670c085615470b67eb3c54885b8c2d482e (patch)
tree414340cf5c91ff32286472206d71c588dd4ac260 /src/libutil/compression.hh
parent3425e90d76a311c6639b7c040f6a9e14856e18f4 (diff)
libutil: add makeDecompressionSource
Change-Id: Iac7f24d79e24417436b9b5cbefd6af051aeea0a6
Diffstat (limited to 'src/libutil/compression.hh')
-rw-r--r--src/libutil/compression.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/compression.hh b/src/libutil/compression.hh
index 4e53a7b3c..8affdddd6 100644
--- a/src/libutil/compression.hh
+++ b/src/libutil/compression.hh
@@ -19,6 +19,7 @@ struct CompressionSink : BufferedSink, FinishSink
std::string decompress(const std::string & method, std::string_view in);
std::unique_ptr<FinishSink> makeDecompressionSink(const std::string & method, Sink & nextSink);
+std::unique_ptr<Source> makeDecompressionSource(const std::string & method, Source & inner);
std::string compress(const std::string & method, std::string_view in, const bool parallel = false, int level = -1);