aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ncp2222.py
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-01-30 21:01:07 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2011-01-30 21:01:07 +0000
commit4c00668bad1c2ef7e75255ce829d9a4dfe645ce8 (patch)
tree4527262549f59bbfdbf71a9be3674b9724ec510e /tools/ncp2222.py
parent76e5fa9b31b8cd25e685c12ee8acdc70f255989f (diff)
Introduce "Fragment count" filter element for all protocols doing reassembly.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35705 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools/ncp2222.py')
-rwxr-xr-xtools/ncp2222.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/ncp2222.py b/tools/ncp2222.py
index 5162b05936..f2ab27e504 100755
--- a/tools/ncp2222.py
+++ b/tools/ncp2222.py
@@ -6206,6 +6206,7 @@ static int hf_nds_segment_overlap_conflict = -1;
static int hf_nds_segment_multiple_tails = -1;
static int hf_nds_segment_too_long_segment = -1;
static int hf_nds_segment_error = -1;
+static int hf_nds_segment_count = -1;
static int hf_nds_reassembled_length = -1;
static int hf_nds_verb2b_req_flags = -1;
static int hf_ncp_ip_address = -1;
@@ -8087,6 +8088,9 @@ proto_register_ncp2222(void)
{ &hf_nds_segment_error,
{ "Desegmentation error", "nds.segment.error", FT_FRAMENUM, BASE_NONE, NULL, 0x0, "Desegmentation error due to illegal segments", HFILL }},
+ { &hf_nds_segment_count,
+ { "Segment count", "nds.segment.count", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }},
+
{ &hf_nds_reassembled_length,
{ "Reassembled NDS length", "nds.reassembled.length", FT_UINT32, BASE_DEC, NULL, 0x0, "The total length of the reassembled payload", HFILL }},