aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-giop.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-13 18:28:34 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-13 18:28:34 +0000
commit3dbfe3bb913477a70091b2440b199dccfe74c197 (patch)
tree5eb52f5028c6a0ff45e0e6c0501b28f827d62600 /epan/dissectors/packet-giop.c
parent9e5388ff1f5ae33a39dcc1cf2c1616bc30200fa0 (diff)
As suggested in http://www.wireshark.org/lists/wireshark-dev/200809/msg00075.html
(as referenced in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2907 ) and https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3411 : Write a new convenience routine for finding a conversation and, if it is not found, create it. The frame number and addresses are taken from pinfo (as is the common case). Use this function in a bunch of dissectors. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32790 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-giop.c')
-rw-r--r--epan/dissectors/packet-giop.c29
1 files changed, 12 insertions, 17 deletions
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index 869eb36629..4858bd63e3 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -1414,7 +1414,7 @@ static void giop_init(void) {
/*
* Free giop_complete_request_list (if necessary)
- * Note: The data elements are se_alloc'd so only the
+ * Note: The data elements are se_alloc'd so only the
* actual list elements need to be freed.
*/
@@ -1756,7 +1756,7 @@ static gboolean try_heuristic_giop_dissector(tvbuff_t *tvb, packet_info *pinfo,
if (len == 0)
return FALSE;
-
+
{
guint32 message_size;
gboolean stream_is_big_endian = is_big_endian (header);
@@ -3402,7 +3402,7 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
if(tree)
{
- proto_tree_add_item (request_tree, hf_giop_objekt_key, tvb,
+ proto_tree_add_item (request_tree, hf_giop_objekt_key, tvb,
offset - objkey_len, objkey_len, FALSE);
}
}
@@ -3417,7 +3417,7 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
{
/* XXX: Get operation string, create a copy in ep memory and then g_free
the string returned from get_CDR_string(). This is a hack so that
- a lexically nested CLEANUP_PUSH & etc is not req'd below.
+ a lexically nested CLEANUP_PUSH & etc is not req'd below.
[The nested CLEANUP_PUSH causes a gcc -Wshadow warning :( ] */
gchar *tmp;
/* length of operation string and string */
@@ -3992,7 +3992,7 @@ static void dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
{
case 2:
case 1:
- ti = proto_tree_add_bitmask(clnp_tree, giop_header_tvb, 6,
+ ti = proto_tree_add_bitmask(clnp_tree, giop_header_tvb, 6,
hf_giop_message_flags, ett_giop_message_flags,
giop_message_flags, FALSE);
if ((header.flags & GIOP_MESSAGE_FLAGS_ENDIANNESS) == 0)
@@ -4046,7 +4046,7 @@ static void dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
switch (header.message_type)
{
-
+
case Request:
if(header.GIOP_version.minor < 2)
{
@@ -4058,10 +4058,10 @@ static void dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
dissect_giop_request_1_2 (payload_tvb, pinfo, tree,
&header, stream_is_big_endian);
}
-
+
break;
-
-
+
+
case Reply:
if(header.GIOP_version.minor < 2)
{
@@ -4092,7 +4092,7 @@ static void dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
break;
default:
break;
-
+
} /* switch message_type */
@@ -4186,13 +4186,8 @@ dissect_giop_heur (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) {
*/
if (!pinfo->fd->flags.visited)
{
- conversation = find_conversation(pinfo->fd->num, &pinfo->src,
- &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0);
- if (conversation == NULL)
- {
- conversation = conversation_new(pinfo->fd->num, &pinfo->src,
- &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0);
- }
+ conversation = find_or_create_conversation(pinfo);
+
/* Set dissector */
conversation_set_dissector(conversation, giop_tcp_handle);
}