aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-11-21 04:01:48 +0000
committerGuy Harris <guy@alum.mit.edu>2003-11-21 04:01:48 +0000
commit7cca92712dbe934712b9181660018a4238b4f89c (patch)
tree44cb39bfeafda6a06654cfd8a187dbb167577181 /packet-dcerpc.c
parent38ec601ae7810e32243cfa50c579c3540ccd8261 (diff)
From Jamie Fournier: add the UUID to the Info column for datagram calls.
svn path=/trunk/; revision=9054
Diffstat (limited to 'packet-dcerpc.c')
-rw-r--r--packet-dcerpc.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/packet-dcerpc.c b/packet-dcerpc.c
index 0963a06191..80a1e6ccc3 100644
--- a/packet-dcerpc.c
+++ b/packet-dcerpc.c
@@ -3,7 +3,7 @@
* Copyright 2001, Todd Sabin <tas@webspan.net>
* Copyright 2003, Tim Potter <tpot@samba.org>
*
- * $Id: packet-dcerpc.c,v 1.155 2003/11/16 23:17:17 guy Exp $
+ * $Id: packet-dcerpc.c,v 1.156 2003/11/21 04:01:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3641,10 +3641,16 @@ dissect_dcerpc_dg_stub (tvbuff_t *tvb, int offset, packet_info *pinfo,
gboolean save_fragmented;
fragment_data *fd_head;
tvbuff_t *next_tvb;
+ e_uuid_t uuid1;
+ uuid1 = di->call_data->uuid;
if (check_col (pinfo->cinfo, COL_INFO)) {
- col_append_fstr (pinfo->cinfo, COL_INFO, " opnum: %u",
- di->call_data->opnum);
+ col_append_fstr (pinfo->cinfo, COL_INFO, " UNKUUID: %08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x opnum: %u",
+ uuid1.Data1, uuid1.Data2, uuid1.Data3, uuid1.Data4[0],
+ uuid1.Data4[1], uuid1.Data4[2], uuid1.Data4[3],
+ uuid1.Data4[4], uuid1.Data4[5], uuid1.Data4[6],
+ uuid1.Data4[7], di->call_data->opnum);
+
}
length = tvb_length_remaining (tvb, offset);