From Steve Osselton:

GIOP dissector update for MIOP.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3847

svn path=/trunk/; revision=29369
This commit is contained in:
Anders Broman 2009-08-10 19:53:12 +00:00
parent 6c352a2959
commit 72d8e6ad54
1 changed files with 11 additions and 2 deletions

View File

@ -497,6 +497,7 @@ static const value_string profile_id_vals[] = {
{ 0x0, "TAG_INTERNET_IOP" },
{ 0x1, "TAG_MULTIPLE_COMPONENTS"},
{ 0x2, "TAG_SCCP_IOP"},
{ 0x3, "TAG_UIPMC"},
{ 0, NULL}
};
@ -2804,13 +2805,21 @@ dissect_target_address(tvbuff_t * tvb, packet_info *pinfo, int *offset, proto_tr
gchar *p_object_key;
guint32 len = 0;
guint32 u_octet4;
const char * name;
object_key = NULL;
discriminant = get_CDR_ushort(tvb, offset, stream_is_big_endian,GIOP_HEADER_SIZE);
if(tree)
{
proto_tree_add_text (tree, tvb, *offset -2, 2,
"TargetAddress Discriminant: %u", discriminant);
switch (discriminant)
{
case 0: name = "KeyAddr"; break;
case 1: name = "ProfileAddr"; break;
case 2: name = "ReferenceAddr"; break;
default: name = "Unknown"; break;
}
proto_tree_add_text (tree, tvb, *offset -2, 2, "TargetAddress: %s", name);
}
switch (discriminant)