aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isis.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-20 07:33:21 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-20 07:33:21 +0000
commite9121f9498d43afda3cc01dc4de853001b832859 (patch)
tree36ddb0160dcb32d8e5ad92cc68e0b5b84c00a02c /packet-isis.c
parent49effaa0f1fa4276f0a5dd57d40b4ca5c306bdf6 (diff)
Put the Hello, LSP, and {C,P}SNP ISIS stuff into the ISIS protocol,
rather than having them each have their own protocol. svn path=/trunk/; revision=4432
Diffstat (limited to 'packet-isis.c')
-rw-r--r--packet-isis.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/packet-isis.c b/packet-isis.c
index 51ad2b2c92..ac050c0243 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.27 2001/12/10 00:25:29 guy Exp $
+ * $Id: packet-isis.c,v 1.28 2001/12/20 07:33:21 guy Exp $
* Stuart Stanley <stuarts@mxmail.net>
*
* Ethereal - Network traffic analyzer
@@ -314,6 +314,15 @@ proto_register_isis(void) {
proto_isis = proto_register_protocol(PROTO_STRING_ISIS, "ISIS", "isis");
proto_register_field_array(proto_isis, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
+
+ /*
+ * Call registration routines for other source files in the ISIS
+ * dissector.
+ */
+ isis_register_hello(proto_isis);
+ isis_register_lsp(proto_isis);
+ isis_register_csnp(proto_isis);
+ isis_register_psnp(proto_isis);
}
void