summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mudurl.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-mudurl.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-mudurl.c')
-rw-r--r--epan/dissectors/packet-mudurl.c96
1 files changed, 96 insertions, 0 deletions
diff --git a/epan/dissectors/packet-mudurl.c b/epan/dissectors/packet-mudurl.c
new file mode 100644
index 00000000..9445cf40
--- /dev/null
+++ b/epan/dissectors/packet-mudurl.c
@@ -0,0 +1,96 @@
+/* Do not modify this file. Changes will be overwritten. */
+/* Generated automatically by the ASN.1 to Wireshark dissector compiler */
+/* packet-mudurl.c */
+/* asn2wrs.py -b -L -p mudurl -c ./mudurl.cnf -s ./packet-mudurl-template -D . -O ../.. MUDURL.asn */
+
+/* packet-mudurl-template.c
+ * Routines for mudurl found in draft-ietf-opsawg-mud
+ * by Eliot Lear
+ *
+ * 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 <epan/asn1.h>
+
+#include "packet-ber.h"
+/* #include "packet-mudurl.h" */ // At the moment we are not exporting.
+#include "packet-x509af.h"
+
+#define PNAME "MUDURL"
+#define PSNAME "MUDURL"
+#define PFNAME "mudurl"
+
+void proto_register_mudurl(void);
+void proto_reg_handoff_mudurl(void);
+
+
+/* Initialize the protocol and registered fields */
+static int proto_mudurl = -1;
+static int hf_mudurl_MUDURLSyntax_PDU = -1; /* MUDURLSyntax */
+
+/* Initialize the subtree pointers */
+/* #include "packet-mudurl-ett.c" */
+
+// static const char *object_identifier_id;
+
+
+
+static int
+dissect_mudurl_MUDURLSyntax(bool implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
+ offset = dissect_ber_restricted_string(implicit_tag, BER_UNI_TAG_IA5String,
+ actx, tree, tvb, offset, hf_index,
+ NULL);
+
+ return offset;
+}
+
+/*--- PDUs ---*/
+
+static int dissect_MUDURLSyntax_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
+ int offset = 0;
+ asn1_ctx_t asn1_ctx;
+ asn1_ctx_init(&asn1_ctx, ASN1_ENC_BER, TRUE, pinfo);
+ offset = dissect_mudurl_MUDURLSyntax(FALSE, tvb, offset, &asn1_ctx, tree, hf_mudurl_MUDURLSyntax_PDU);
+ return offset;
+}
+
+
+
+/*--- proto_register_mudurl ----------------------------------------------*/
+void proto_register_mudurl(void) {
+
+ /* List of fields */
+ static hf_register_info hf[] = {
+ { &hf_mudurl_MUDURLSyntax_PDU,
+ { "MUDURLSyntax", "mudurl.MUDURLSyntax",
+ FT_STRING, BASE_NONE, NULL, 0,
+ NULL, HFILL }},
+ };
+
+ /* List of subtrees */
+ /* static gint *ett[] = {
+#include "packet-mudurl-ettarr.c"
+ }; */
+
+ /* Register protocol */
+ proto_mudurl = proto_register_protocol(PNAME, PSNAME, PFNAME);
+
+ /* Register fields and subtrees */
+ proto_register_field_array(proto_mudurl, hf, array_length(hf));
+ // proto_register_subtree_array(ett, array_length(ett));
+
+}
+
+
+/*--- proto_reg_handoff_mudurl -------------------------------------------*/
+void proto_reg_handoff_mudurl(void) {
+ register_ber_oid_dissector("1.3.6.1.5.5.7.1.25", dissect_MUDURLSyntax_PDU, proto_mudurl, "id-pe-mud-url");
+
+}