summaryrefslogtreecommitdiff
path: root/wiretap/wtap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-12-23 19:50:21 +0000
committerGuy Harris <guy@alum.mit.edu>2008-12-23 19:50:21 +0000
commitd2cbbe0a2af8c728165272277d9abf7f5cd8bcc4 (patch)
treed5ba739df469e669ca0bf74468cdd893238541f4 /wiretap/wtap.c
parentc30c410fa51598eaaa74ef0cf16530a9c3252f20 (diff)
downloadwireshark-d2cbbe0a2af8c728165272277d9abf7f5cd8bcc4.tar.gz
Handle the new DLT_USB_LINUX_MMAP link-layer type.
svn path=/trunk/; revision=27099
Diffstat (limited to 'wiretap/wtap.c')
-rw-r--r--wiretap/wtap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 02946c7dbd..1041e85de6 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -433,7 +433,10 @@ static struct encap_type_info encap_table_base[] = {
{ "IEEE 802.15.4 Wireless PAN non-ASK PHY", "wpan-nonask-phy" },
/* WTAP_ENCAP_TNEF */
- { "Transport-Neutral Encapsulation Format", "tnef" }
+ { "Transport-Neutral Encapsulation Format", "tnef" },
+
+ /* WTAP_ENCAP_USB_LINUX_MMAP */
+ { "USB packets with Linux header and padding", "usb-linux-mmap" },
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);