aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-smb-pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-smb-pipe.c')
-rw-r--r--epan/dissectors/packet-smb-pipe.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-smb-pipe.c b/epan/dissectors/packet-smb-pipe.c
index 88ed447bd6..1db6c3adb8 100644
--- a/epan/dissectors/packet-smb-pipe.c
+++ b/epan/dissectors/packet-smb-pipe.c
@@ -72,6 +72,7 @@ static int hf_pipe_fragment_multiple_tails = -1;
static int hf_pipe_fragment_too_long_fragment = -1;
static int hf_pipe_fragment_error = -1;
static int hf_pipe_reassembled_in = -1;
+static int hf_pipe_reassembled_length = -1;
static gint ett_smb_pipe = -1;
static gint ett_smb_pipe_fragment = -1;
@@ -88,6 +89,7 @@ static const fragment_items smb_pipe_frag_items = {
&hf_pipe_fragment_too_long_fragment,
&hf_pipe_fragment_error,
NULL,
+ &hf_pipe_reassembled_length,
"fragments"
};
@@ -3918,6 +3920,9 @@ proto_register_smb_pipe(void)
{ &hf_pipe_reassembled_in,
{ "This PDU is reassembled in", "pipe.reassembled_in", FT_FRAMENUM,
BASE_NONE, NULL, 0x0, "The DCE/RPC PDU is completely reassembled in this frame", HFILL }},
+ { &hf_pipe_reassembled_length,
+ { "Reassembled length", "pipe.reassembled_length", FT_UINT32,
+ BASE_DEC, NULL, 0x0, "The total length of the reassembled payload", HFILL }},
};
static gint *ett[] = {
&ett_smb_pipe,