diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-08-29 18:52:54 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-08-29 18:52:54 +0000 |
commit | 79195136aaa365702c69a0ca1ab0cbe553a6bf44 (patch) | |
tree | 17812cffbc32d0f4b6a1a20fc5fc47efa1628f98 /packet-isis.c | |
parent | ab3cf9bc61e0d023a3425fbb26eb7af5cd541a3c (diff) | |
download | wireshark-79195136aaa365702c69a0ca1ab0cbe553a6bf44.tar.gz wireshark-79195136aaa365702c69a0ca1ab0cbe553a6bf44.tar.bz2 wireshark-79195136aaa365702c69a0ca1ab0cbe553a6bf44.zip |
From Hannes Gredler: make the IS-IS dissector more verbose in the INFO
field - specifically for
IIHs the System-ID of the Hello;
LSPs the LSP-ID, Sequence #, Lifetime;
CSNPs the LAN-ID, Start LSP-ID, End LSP-ID.
and change the display of some IDs.
Clean up white space.
svn path=/trunk/; revision=6128
Diffstat (limited to 'packet-isis.c')
-rw-r--r-- | packet-isis.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-isis.c b/packet-isis.c index 19c3aed766..d56e4b8753 100644 --- a/packet-isis.c +++ b/packet-isis.c @@ -2,7 +2,7 @@ * Routines for ISO/OSI network and transport protocol packet disassembly, core * bits. * - * $Id: packet-isis.c,v 1.33 2002/08/28 21:00:18 jmayer Exp $ + * $Id: packet-isis.c,v 1.34 2002/08/29 18:52:51 guy Exp $ * Stuart Stanley <stuarts@mxmail.net> * * Ethereal - Network traffic analyzer @@ -221,22 +221,22 @@ dissect_isis(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) case ISIS_TYPE_L1_HELLO: case ISIS_TYPE_L2_HELLO: case ISIS_TYPE_PTP_HELLO: - isis_dissect_isis_hello(tvb, isis_tree, offset, + isis_dissect_isis_hello(tvb, pinfo, isis_tree, offset, isis_type, isis_header_length, isis_system_id_len); break; case ISIS_TYPE_L1_LSP: case ISIS_TYPE_L2_LSP: - isis_dissect_isis_lsp(tvb, isis_tree, offset, + isis_dissect_isis_lsp(tvb, pinfo, isis_tree, offset, isis_type, isis_header_length, isis_system_id_len); break; case ISIS_TYPE_L1_CSNP: case ISIS_TYPE_L2_CSNP: - isis_dissect_isis_csnp(tvb, isis_tree, offset, + isis_dissect_isis_csnp(tvb, pinfo, isis_tree, offset, isis_type, isis_header_length, isis_system_id_len); break; case ISIS_TYPE_L1_PSNP: case ISIS_TYPE_L2_PSNP: - isis_dissect_isis_psnp(tvb, isis_tree, offset, + isis_dissect_isis_psnp(tvb, pinfo, isis_tree, offset, isis_type, isis_header_length, isis_system_id_len); break; default: |