From 0274ea749a6a1456d905878730c226985db183ad Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 25 Apr 2017 14:51:44 -0400 Subject: Function to convert compression methods to/from strings. --- src/common/compress.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/common/compress.h') diff --git a/src/common/compress.h b/src/common/compress.h index cb5caeaf07..95b70c02ec 100644 --- a/src/common/compress.h +++ b/src/common/compress.h @@ -48,6 +48,8 @@ compress_method_t detect_compression_method(const char *in, size_t in_len); int tor_compress_is_compression_bomb(size_t size_in, size_t size_out); int tor_compress_supports_method(compress_method_t method); +const char * compression_method_get_name(compress_method_t method); +compress_method_t compression_method_get_by_name(const char *name); const char *tor_compress_version_str(compress_method_t method); -- cgit v1.2.3-54-g00ecf