From a45a8ee1ee114753b92ed43c9d44a6f33c68c8c4 Mon Sep 17 00:00:00 2001 From: guy 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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2810 f5534014-38df-0310-8fa8-9805f1628bb7 --- packet-msproxy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packet-msproxy.c') diff --git a/packet-msproxy.c b/packet-msproxy.c index dfd162ea37..58f15bb155 100644 --- a/packet-msproxy.c +++ b/packet-msproxy.c @@ -2,7 +2,7 @@ * Routines for Microsoft Proxy packet dissection * Copyright 2000, Jeffrey C. Foster * - * $Id: packet-msproxy.c,v 1.14 2000/11/19 08:54:00 guy Exp $ + * $Id: packet-msproxy.c,v 1.15 2001/01/03 06:55:30 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -1339,7 +1339,8 @@ proto_register_msproxy( void){ }; - proto_msproxy = proto_register_protocol ( "MSProxy Protocol", "msproxy"); + proto_msproxy = proto_register_protocol( "MS Proxy Protocol", + "MS Proxy", "msproxy"); proto_register_field_array(proto_msproxy, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); -- cgit v1.2.3