diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-08 19:32:05 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-08 19:32:05 +0000 |
commit | 376056336cb799d511ef653ab433687414f8a807 (patch) | |
tree | 445b03cc0553cd59e4e068b52f02edc55e19340c /packet-osi.c | |
parent | 69a945b5cefcb4b0ad3c1fd8486981fa5babe733 (diff) | |
download | wireshark-376056336cb799d511ef653ab433687414f8a807.tar.gz wireshark-376056336cb799d511ef653ab433687414f8a807.tar.bz2 wireshark-376056336cb799d511ef653ab433687414f8a807.zip |
OSI network layer over PPP support, fix to P2P ISIS processing, and ISIS
hostname TLV support, from Hannes Gredler.
svn path=/trunk/; revision=3271
Diffstat (limited to 'packet-osi.c')
-rw-r--r-- | packet-osi.c | 4 |
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); } |