summaryrefslogtreecommitdiff
path: root/src/common/compress_lzma.c
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@torproject.org>2017-04-20 15:56:38 +0200
committerNick Mathewson <nickm@torproject.org>2017-04-25 08:10:09 -0400
commit1c77d8690caa1ad80b9d9581cac8eddae95e82d1 (patch)
tree87cb3f07a2919f11fef5eafe671bd97f8c825710 /src/common/compress_lzma.c
parent04682d302aeeb0c2a0d9859bc0c1feee38daf16a (diff)
downloadtor-1c77d8690caa1ad80b9d9581cac8eddae95e82d1.tar.gz
tor-1c77d8690caa1ad80b9d9581cac8eddae95e82d1.zip
Add function to check if a given compression method is supported.
This patch adds support for checking if a given `compress_method_t` is supported by the currently running Tor instance using `tor_compress_supports_method()`. See: https://bugs.torproject.org/21662
Diffstat (limited to 'src/common/compress_lzma.c')
-rw-r--r--src/common/compress_lzma.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/compress_lzma.c b/src/common/compress_lzma.c
index e1a7a66b0c..c45cb5eb4f 100644
--- a/src/common/compress_lzma.c
+++ b/src/common/compress_lzma.c
@@ -61,6 +61,17 @@ lzma_error_str(lzma_ret error)
}
#endif // HAVE_LZMA.
+/** Return 1 if LZMA compression is supported; otherwise 0. */
+int
+tor_lzma_method_supported(void)
+{
+#ifdef HAVE_LZMA
+ return 1;
+#else
+ return 0;
+#endif
+}
+
/** Return a string representation of the version of the currently running
* version of liblzma. */
const char *