diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-10-22 00:59:25 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-10-22 00:59:25 +0000 |
commit | abbd3e0dea6d67b11b0afe3139ee2b2a838d34ab (patch) | |
tree | 1cef3acab1fdbf275e459d873c46185e0c27b41a /packet-dcerpc.h | |
parent | 1780e3e10bb86b4014f628e6ae0541de25f1e89e (diff) | |
download | wireshark-abbd3e0dea6d67b11b0afe3139ee2b2a838d34ab.tar.gz wireshark-abbd3e0dea6d67b11b0afe3139ee2b2a838d34ab.tar.bz2 wireshark-abbd3e0dea6d67b11b0afe3139ee2b2a838d34ab.zip |
From Ronnie Sahlberg: track and display the time between requests and
replies for DCERPC similar to what is already done for ONC-RPC.
svn path=/trunk/; revision=6465
Diffstat (limited to 'packet-dcerpc.h')
-rw-r--r-- | packet-dcerpc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-dcerpc.h b/packet-dcerpc.h index ff76f8350a..feae1d7aff 100644 --- a/packet-dcerpc.h +++ b/packet-dcerpc.h @@ -1,7 +1,7 @@ /* packet-dcerpc.h * Copyright 2001, Todd Sabin <tas@webspan.net> * - * $Id: packet-dcerpc.h,v 1.21 2002/09/26 06:13:08 sahlberg Exp $ + * $Id: packet-dcerpc.h,v 1.22 2002/10/22 00:59:25 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -212,6 +212,7 @@ typedef struct _dcerpc_call_value { guint16 ver; guint16 opnum; guint32 req_frame; + nstime_t req_time; guint32 rep_frame; guint32 max_ptr; void *private_data; |