aboutsummaryrefslogtreecommitdiffstats
path: root/packet-llc.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-09-17 02:01:50 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-09-17 02:01:50 +0000
commit0c4ef493d8a135099ee918fe253fca174bc8accd (patch)
tree73736c49df55712dd300e40f52e754b5909915dd /packet-llc.c
parent969e30f1e217a4f12716ad26408af07936153423 (diff)
* Added in Laurent's OSI/ISO CNLP and COTP support.
* Added Laurent's changes to the man (actually pod) page. * Copied in VERSION file so that others can make doc/Makefile git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-llc.c')
-rw-r--r--packet-llc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-llc.c b/packet-llc.c
index beaff6a018..c5a7cff859 100644
--- a/packet-llc.c
+++ b/packet-llc.c
@@ -2,7 +2,7 @@
* Routines for IEEE 802.2 LLC layer
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
- * $Id: packet-llc.c,v 1.2 1998/09/16 03:22:06 gerald Exp $
+ * $Id: packet-llc.c,v 1.3 1998/09/17 02:01:47 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@@ -157,6 +157,9 @@ dissect_llc(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
case 0xe0: /* NetWare (IPX) */
dissect_ipx(pd, offset, fd, tree);
break;
+ case 0xfe: /* ISO Network Layer */
+ dissect_osi(pd, offset, fd, tree);
+ break;
default:
dissect_data(pd, offset, fd, tree);
break;