From 0e7c1de08a9e6b453b47c60a698a24387d63719a Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 3 Jan 2001 06:56:03 +0000 Subject: Have "proto_register_protocol()" build a list of data structures for protocols, in addition to adding structures to the list of filterable fields. Give it an extra argument that specifies a "short name" for the protocol, for use in such places as pinfo->current_proto; the dialog box for constructing filters; the preferences tab for the protocol; and so on (although we're not yet using it in all those places). Make the preference name that appears in the preferences file and the command line for the DIAMETER protocol "diameter", not "Diameter"; the convention is that the name in question be all-lower-case. Make some routines and variables that aren't exported static. Update a comment in the ICP dissector to make it clear that the dissector won't see fragments other than the first fragment of a fragmented datagram. svn path=/trunk/; revision=2810 --- packet-radius.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packet-radius.c') diff --git a/packet-radius.c b/packet-radius.c index 5cce95e0fa..9751fff1ee 100644 --- a/packet-radius.c +++ b/packet-radius.c @@ -1,7 +1,7 @@ /* packet-radius.c * Routines for RADIUS packet disassembly * - * $Id: packet-radius.c,v 1.20 2000/11/28 06:29:17 guy Exp $ + * $Id: packet-radius.c,v 1.21 2001/01/03 06:55:31 guy Exp $ * * Ethereal - Network traffic analyzer * By Johan Feyaerts @@ -775,7 +775,8 @@ proto_register_radius(void) &ett_radius_avp, }; - proto_radius = proto_register_protocol ("Radius Protocol", "radius"); + proto_radius = proto_register_protocol("Radius Protocol", "RADIUS", + "radius"); proto_register_field_array(proto_radius, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); } -- cgit v1.2.3