diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-05-16 03:31:34 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-05-16 03:31:34 +0000 |
commit | 0df97ac2b6e098ae24f6b0dceb3e0cc359c0245a (patch) | |
tree | 263a4c748fd12af668ac9d214d73caebdd350f12 /ncp2222.py | |
parent | aca0488ace6f9152acc7dc7feee24ea9cde84f47 (diff) | |
download | wireshark-0df97ac2b6e098ae24f6b0dceb3e0cc359c0245a.tar.gz wireshark-0df97ac2b6e098ae24f6b0dceb3e0cc359c0245a.tar.bz2 wireshark-0df97ac2b6e098ae24f6b0dceb3e0cc359c0245a.zip |
For response packets, add a field showing the number of the frame
containing the request packet.
svn path=/trunk/; revision=5485
Diffstat (limited to 'ncp2222.py')
-rwxr-xr-x | ncp2222.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ncp2222.py b/ncp2222.py index ca46702d32..06c7edd51b 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.18 2002/05/15 03:33:40 guy Exp $ +$Id: ncp2222.py,v 1.19 2002/05/16 03:31:33 gram Exp $ Copyright (c) 2000-2002 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -5266,6 +5266,7 @@ static int hf_ncp_length = -1; static int hf_ncp_subfunc = -1; static int hf_ncp_completion_code = -1; static int hf_ncp_connection_status = -1; +static int hf_ncp_req_frame_num = -1; """ # Look at all packet types in the packets collection, and cull information @@ -5612,6 +5613,10 @@ proto_register_ncp2222(void) { &hf_ncp_connection_status, { "Connection Status", "ncp.connection_status", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL }}, + + { &hf_ncp_req_frame_num, + { "Response to Request in Frame Number", "ncp.req_frame_num", FT_UINT32, BASE_DEC, + NULL, 0x0, "", HFILL }}, """ # Print the registration code for the hf variables |