aboutsummaryrefslogtreecommitdiffstats
path: root/packet.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-12-12 22:40:10 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-12-12 22:40:10 +0000
commit4a15f6582a309aa17e533febd2de731dba575336 (patch)
tree304b093f0b229e089402ae3522ec489584bc1484 /packet.c
parentbf611b0f7ca3352482a0854cf1c1de2ded8330c0 (diff)
Added Bert Driehuis <driehuis@playbeing.org>'s I4B wiretap module
and V.120 decoder. svn path=/trunk/; revision=1304
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 5ffb41e656..65d6353a13 100644
--- a/packet.c
+++ b/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.59 1999/12/12 05:11:45 gram Exp $
+ * $Id: packet.c,v 1.60 1999/12/12 22:39:29 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -852,6 +852,9 @@ dissect_packet(const u_char *pd, frame_data *fd, proto_tree *tree)
case WTAP_ENCAP_LAPD :
dissect_lapd(pd, fd, tree);
break;
+ case WTAP_ENCAP_V120 :
+ dissect_v120(pd, fd, tree);
+ break;
}
}