aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-11-12 20:27:32 +0000
committerBill Meier <wmeier@newsguy.com>2011-11-12 20:27:32 +0000
commit3227cade47e024056af9059b639f4e2b82c9f0c6 (patch)
tree78758de421ebff59bee988c10ef3f87b5299795a /wiretap/wtap.c
parentd38970f73f886a66bdab57481796a006d4bbc277 (diff)
Add entries for WTAP_ENCAP_NETANALYZER... to encap_table_base[]
svn path=/trunk/; revision=39810
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 956421a74a..70d743e981 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -506,7 +506,13 @@ static struct encap_type_info encap_table_base[] = {
{ "MUX27010", "mux27010"},
/* WTAP_ENCAP_MIME */
- { "MIME", "mime"}
+ { "MIME", "mime" },
+
+ /* WTAP_ENCAP_NETANALYZER */
+ { "netANALYZER", "netanalyzer" },
+
+ /* WTAP_ENCAP_NETANALYZER_TRANSPARENT */
+ { "netANALYZER-Transparent", "netanalyzer-transparent" }
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);