aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 3b7c31891f..a9ee84c3eb 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -86,6 +86,18 @@ wtap_get_compression_type(wtap *wth)
return is_compressed ? WTAP_GZIP_COMPRESSED : WTAP_UNCOMPRESSED;
}
+static const char *compression_type_descriptions[WTAP_NUM_COMPRESSION_TYPES] = {
+ NULL, /* uncompressed */
+ "gzip compressed"
+};
+
+const char *
+wtap_compression_type_description(wtap_compression_type compression_type)
+{
+ g_assert(compression_type >= 0 && compression_type < WTAP_NUM_COMPRESSION_TYPES);
+ return compression_type_descriptions[compression_type];
+}
+
guint
wtap_snapshot_length(wtap *wth)
{