aboutsummaryrefslogtreecommitdiff
path: root/src/common/compress.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/compress.h')
-rw-r--r--src/common/compress.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/compress.h b/src/common/compress.h
index 2d812e4430..8be67df3a6 100644
--- a/src/common/compress.h
+++ b/src/common/compress.h
@@ -26,11 +26,11 @@ typedef enum {
/**
* Enumeration to define tradeoffs between memory usage and compression level.
- * HIGH_COMPRESSION saves the most bandwidth; LOW_COMPRESSION saves the most
+ * BEST_COMPRESSION saves the most bandwidth; LOW_COMPRESSION saves the most
* memory.
**/
typedef enum {
- HIGH_COMPRESSION, MEDIUM_COMPRESSION, LOW_COMPRESSION
+ BEST_COMPRESSION, HIGH_COMPRESSION, MEDIUM_COMPRESSION, LOW_COMPRESSION
} compression_level_t;
int tor_compress(char **out, size_t *out_len,