From John Mackenzie: register GIOP dissector as a UDP heuristic

dissector.

svn path=/trunk/; revision=4817
This commit is contained in:
Guy Harris 2002-02-27 00:30:22 +00:00
parent c1333b7964
commit a3d5f0a6f2
2 changed files with 4 additions and 1 deletions

View File

@ -1059,6 +1059,7 @@ Kari Tiirikainen <ktiirika[AT]stybba.ntc.nokia.com> {
John Mackenzie <John.A.Mackenzie[AT]t-online.de> {
Put missing initializations of table entries in "plugins.c"
Register GIOP dissector as a UDP heuristic dissector
}
Peter Valchev <pvalchev[AT]openbsd.org> {

View File

@ -9,7 +9,7 @@
* Frank Singleton <frank.singleton@ericsson.com>
* Trevor Shepherd <eustrsd@am1.ericsson.se>
*
* $Id: packet-giop.c,v 1.56 2002/02/18 01:08:35 guy Exp $
* $Id: packet-giop.c,v 1.57 2002/02/27 00:30:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -4302,6 +4302,8 @@ proto_register_giop (void)
void proto_reg_handoff_giop (void) {
data_handle = find_dissector("data");
heur_dissector_add("tcp", dissect_giop, proto_giop);
/* Support DIOP (GIOP/UDP) */
heur_dissector_add("udp", dissect_giop, proto_giop);
}