From Laurent Meyer: register the ESIS dissector by name, so it can be

called from other dissectors.

svn path=/trunk/; revision=7198
This commit is contained in:
Guy Harris 2003-02-25 19:07:07 +00:00
parent 5c8110c0a8
commit 0462c4d806
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* Routines for ISO/OSI End System to Intermediate System
* Routing Exchange Protocol ISO 9542.
*
* $Id: packet-esis.c,v 1.27 2002/08/28 21:00:13 jmayer Exp $
* $Id: packet-esis.c,v 1.28 2003/02/25 19:07:07 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@ -441,5 +441,6 @@ proto_reg_handoff_esis(void)
dissector_handle_t esis_handle;
esis_handle = create_dissector_handle(dissect_esis, proto_esis);
register_dissector("esis", dissect_esis, proto_esis);
dissector_add("osinl", NLPID_ISO9542_ESIS, esis_handle);
}