aboutsummaryrefslogtreecommitdiffstats
path: root/packet-osi.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-08 19:32:05 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-08 19:32:05 +0000
commitb36bb24bfef199afe0f45aec4916adefd3c77502 (patch)
tree445b03cc0553cd59e4e068b52f02edc55e19340c /packet-osi.c
parenteb9ce84c59465aad94621dde620673a867077122 (diff)
OSI network layer over PPP support, fix to P2P ISIS processing, and ISIS
hostname TLV support, from Hannes Gredler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3271 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-osi.c')
-rw-r--r--packet-osi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-osi.c b/packet-osi.c
index b24f1dcccb..a615772e21 100644
--- a/packet-osi.c
+++ b/packet-osi.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI network and transport protocol packet disassembly
* Main entrance point and common functions
*
- * $Id: packet-osi.c,v 1.42 2001/04/01 05:48:14 hagbard Exp $
+ * $Id: packet-osi.c,v 1.43 2001/04/08 19:32:03 guy Exp $
* Laurent Deniel <deniel@worldnet.fr>
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
@@ -43,6 +43,7 @@
#include "llcsaps.h"
#include "aftypes.h"
#include "nlpid.h"
+#include "ppptypes.h"
#include "packet-osi.h"
#include "packet-isis.h"
#include "packet-esis.h"
@@ -152,5 +153,6 @@ void
proto_reg_handoff_osi(void)
{
dissector_add("llc.dsap", SAP_OSINL, dissect_osi, -1);
+ dissector_add("ppp.protocol", PPP_OSI, dissect_osi, -1);
dissector_add("null.type", BSD_AF_ISO, dissect_osi, -1);
}