aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2007-10-16 17:19:16 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2007-10-16 17:19:16 +0000
commit0f82a3e7e81e96ba7ecd993688183e34bbf5bd71 (patch)
tree71ea788dd9b1573fd53c35cf798cf0880058db30 /wiretap/wtap.c
parent53489c8f5d938b927419eb95861034c06f48bcfc (diff)
From Paolo Abeni via bug 1751:
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1751 The patch adds support to wiretap for a new libpcap DLT for bluetooth captures. This DLT carries the direction information, which now can be displayed correctly. The hci H4 dissector is updated to handle also the newly introduced wtap encap. svn path=/trunk/; revision=23208
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index f6266c5af3..759fbed3da 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -386,6 +386,9 @@ static struct encap_type_info encap_table_base[] = {
/* WTAP_ENCAP_ERF */
{ "Endace Record File", "erf" },
+
+ /* WTAP_ENCAP_BT_H4 */
+ { "Bluetooth H4 with linux header", "bluetooth-h4" },
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);