aboutsummaryrefslogtreecommitdiffstats
path: root/ncp2222.py
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-01-22 00:45:30 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-01-22 00:45:30 +0000
commitb8fd3cc391ebf9475fce3d8e75a09e7f8201fe38 (patch)
treed9c3d77967fe87984b0d0713d6759c675bf62e49 /ncp2222.py
parent87c67ddce1c76fde8f4b55f04eeffeca6ef89d60 (diff)
Keep track of and display the time between Call and Reply in NCP packets.
svn path=/trunk/; revision=6968
Diffstat (limited to 'ncp2222.py')
-rwxr-xr-xncp2222.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ncp2222.py b/ncp2222.py
index b1f3dee5be..07a0b60f93 100755
--- a/ncp2222.py
+++ b/ncp2222.py
@@ -24,7 +24,7 @@ http://developer.novell.com/ndk/doc/docui/index.htm#../ncp/ncp__enu/data/
for a badly-formatted HTML version of the same PDF.
-$Id: ncp2222.py,v 1.41 2003/01/06 02:10:54 guy Exp $
+$Id: ncp2222.py,v 1.42 2003/01/22 00:45:29 sahlberg Exp $
Copyright (c) 2000-2002 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -5545,6 +5545,7 @@ static int hf_ncp_fragment_handle = -1;
static int hf_ncp_completion_code = -1;
static int hf_ncp_connection_status = -1;
static int hf_ncp_req_frame_num = -1;
+static int hf_ncp_req_frame_time = -1;
static int hf_ncp_fragment_size = -1;
static int hf_ncp_message_size = -1;
static int hf_ncp_nds_flag = -1;
@@ -6420,6 +6421,10 @@ proto_register_ncp2222(void)
{ "Response to Request in Frame Number", "ncp.req_frame_num", FT_UINT32, BASE_DEC,
NULL, 0x0, "", HFILL }},
+ { &hf_ncp_req_frame_time,
+ { "Time from Request", "ncp.time", FT_RELATIVE_TIME, BASE_NONE,
+ NULL, 0x0, "Time between request and response in seconds", HFILL }},
+
{ &hf_nds_flags,
{ "NDS Return Flags", "ncp.nds_flags", FT_UINT32, BASE_HEX, NULL, 0x0, "", HFILL }},