aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-02-25 21:55:41 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-02-25 21:55:41 +0000
commit810979a0b4b804ff175ea2207062f765ee16cc55 (patch)
tree6b072f18d0c5d71546c32ceec7bf9d44ea591d54 /wiretap/wtap.c
parent404c0871956ee84c8cd487dc5cacfc4f34ed057d (diff)
Add support for DLT_IPMB (199). The dissector for these packets is in http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1970 (pending review)
svn path=/trunk/; revision=24463
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 4544b33272..9ec246cd0c 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -392,6 +392,15 @@ static struct encap_type_info encap_table_base[] = {
/* WTAP_ENCAP_SITA */
{ "SITA WAN packets", "sita-wan" },
+
+ /* WTAP_ENCAP_SCCP */
+ { "SS7 SCCP", "sccp" },
+
+ /* WTAP_ENCAP_BLUETOOTH_HCI */
+ { "Bluetooth without transport layer", "bluetooth-hci" },
+
+ /* WTAP_ENCAP_IPMB */
+ { "Intelligent Platform Management Bus", "ipmb" }
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);