summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pcapng_block.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/packet-pcapng_block.c
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-pcapng_block.c')
-rw-r--r--epan/dissectors/packet-pcapng_block.c75
1 files changed, 75 insertions, 0 deletions
diff --git a/epan/dissectors/packet-pcapng_block.c b/epan/dissectors/packet-pcapng_block.c
new file mode 100644
index 00000000..34212b6f
--- /dev/null
+++ b/epan/dissectors/packet-pcapng_block.c
@@ -0,0 +1,75 @@
+/* packet-pcapng.c
+ * Dissector to handle pcapng file-type-specific blocks.
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "config.h"
+
+#include <epan/packet.h>
+
+#include <wiretap/wtap.h>
+
+void proto_register_pcapng_block(void);
+void proto_reg_handoff_pcapng_block(void);
+
+static dissector_handle_t pcapng_block_handle;
+
+static int proto_pcapng_block = -1;
+
+static dissector_table_t pcapng_block_type_dissector_table;
+
+static int
+dissect_pcapng_block(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
+{
+ /*
+ * Call the dissector for the block type of this block, if there
+ * is one.
+ */
+ if (!dissector_try_uint(pcapng_block_type_dissector_table,
+ pinfo->rec->rec_header.ft_specific_header.record_type, tvb, pinfo, tree)) {
+ /*
+ * There isn't one; just do a minimal display.
+ */
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "PCAPNG");
+ col_add_fstr(pinfo->cinfo, COL_INFO, "Pcapng block, type %u",
+ pinfo->rec->rec_header.ft_specific_header.record_type);
+
+ proto_tree_add_item(tree, proto_pcapng_block, tvb, 0, -1, ENC_NA);
+ }
+ return tvb_captured_length(tvb);
+}
+
+void proto_register_pcapng_block(void)
+{
+ proto_pcapng_block = proto_register_protocol("Pcapng block", "PCAPNG", "pcapng");
+ pcapng_block_type_dissector_table = register_dissector_table("pcapng.block_type",
+ "pcapng block type", proto_pcapng_block, FT_UINT32, BASE_DEC);
+
+ pcapng_block_handle = register_dissector("pcapng", dissect_pcapng_block,
+ proto_pcapng_block);
+}
+
+void
+proto_reg_handoff_pcapng_block(void)
+{
+ dissector_add_uint("wtap_fts_rec", wtap_pcapng_file_type_subtype(),
+ pcapng_block_handle);
+}
+
+/*
+ * Editor modelines - https://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */