diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-04-03 09:41:31 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-04-03 09:41:31 +0000 |
commit | 3ee409084ca5ad3d8c0eb434750e914d87c01d88 (patch) | |
tree | 7d4e9b44453a62c4a84a6d8a267e544c4d37fe60 /tethereal.c | |
parent | 7678c401dd54acfa4b7efed39276a3a1b08e3968 (diff) | |
download | wireshark-3ee409084ca5ad3d8c0eb434750e914d87c01d88.tar.gz wireshark-3ee409084ca5ad3d8c0eb434750e914d87c01d88.tar.bz2 wireshark-3ee409084ca5ad3d8c0eb434750e914d87c01d88.zip |
Move the creation of, and registration of protocols known to UDP in, the
hash table attached to "udp.port" out of "init_dissect_udp()" into
"proto_register_udp()", so that it's done the way TCP does it, and then
get rid of "init_dissect_udp()".
svn path=/trunk/; revision=1781
Diffstat (limited to 'tethereal.c')
-rw-r--r-- | tethereal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tethereal.c b/tethereal.c index ff219f75f8..bc21f11f75 100644 --- a/tethereal.c +++ b/tethereal.c @@ -1,6 +1,6 @@ /* tethereal.c * - * $Id: tethereal.c,v 1.21 2000/03/28 20:20:02 gram Exp $ + * $Id: tethereal.c,v 1.22 2000/04/03 09:41:14 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -127,7 +127,6 @@ static void ethereal_proto_init(void) { init_dissect_rpc(); proto_init(); - init_dissect_udp(); dfilter_init(); #ifdef HAVE_PLUGINS init_plugins(); |