summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-11-11 05:36:16 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-11-11 05:36:16 +0000
commit4ec9c54b4b00287efa764746602f94f52ac4af2a (patch)
tree17f63e97ca15b48caf8fb7dc803647e4abafe573 /packet.c
parent4302c1ddc351b8afae9a1741ba040514cc5e6b3e (diff)
downloadwireshark-4ec9c54b4b00287efa764746602f94f52ac4af2a.tar.gz
Add LAPD support.
svn path=/trunk/; revision=1004
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index f14880d56f..8fda40492a 100644
--- a/packet.c
+++ b/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.52 1999/10/29 02:25:54 guy Exp $
+ * $Id: packet.c,v 1.53 1999/11/11 05:36:05 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -803,6 +803,9 @@ dissect_packet(const u_char *pd, frame_data *fd, proto_tree *tree)
case WTAP_ENCAP_ASCEND :
dissect_ascend(pd, fd, tree);
break;
+ case WTAP_ENCAP_LAPD :
+ dissect_lapd(pd, fd, tree);
+ break;
}
}