summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ripng.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
commitc4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch)
tree93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-ripng.c
parentAdding upstream version 4.2.6. (diff)
downloadwireshark-upstream.tar.xz
wireshark-upstream.zip
Adding upstream version 4.4.0.upstream/4.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-ripng.c')
-rw-r--r--epan/dissectors/packet-ripng.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/epan/dissectors/packet-ripng.c b/epan/dissectors/packet-ripng.c
index 8df74457..3b15cf86 100644
--- a/epan/dissectors/packet-ripng.c
+++ b/epan/dissectors/packet-ripng.c
@@ -25,19 +25,19 @@ void proto_reg_handoff_ripng(void);
static dissector_handle_t ripng_handle;
-static int proto_ripng = -1;
-static int hf_ripng_cmd = -1;
-static int hf_ripng_version = -1;
-static int hf_ripng_reserved = -1;
+static int proto_ripng;
+static int hf_ripng_cmd;
+static int hf_ripng_version;
+static int hf_ripng_reserved;
-static int hf_ripng_rte = -1;
-static int hf_ripng_rte_ipv6_prefix = -1;
-static int hf_ripng_rte_route_tag = -1;
-static int hf_ripng_rte_prefix_length = -1;
-static int hf_ripng_rte_metric = -1;
+static int hf_ripng_rte;
+static int hf_ripng_rte_ipv6_prefix;
+static int hf_ripng_rte_route_tag;
+static int hf_ripng_rte_prefix_length;
+static int hf_ripng_rte_metric;
-static gint ett_ripng = -1;
-static gint ett_ripng_rte = -1;
+static int ett_ripng;
+static int ett_ripng_rte;
#define UDP_PORT_RIPNG 521
@@ -58,8 +58,8 @@ dissect_ripng(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
col_set_str(pinfo->cinfo, COL_PROTOCOL, "RIPng");
col_add_fstr(pinfo->cinfo, COL_INFO," Command %s, Version %u",
- val_to_str(tvb_get_guint8(tvb, offset), cmdvals, "Unknown (%u)"),
- tvb_get_guint8(tvb, offset +1));
+ val_to_str(tvb_get_uint8(tvb, offset), cmdvals, "Unknown (%u)"),
+ tvb_get_uint8(tvb, offset +1));
if (tree) {
ti = proto_tree_add_item(tree, proto_ripng, tvb, offset, -1, ENC_NA);
@@ -94,12 +94,12 @@ dissect_ripng(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U
/* Prefix Length */
proto_tree_add_item(rte_tree, hf_ripng_rte_prefix_length, tvb, offset, 1, ENC_BIG_ENDIAN);
- proto_item_append_text(rte_ti, "/%u", tvb_get_guint8(tvb, offset));
+ proto_item_append_text(rte_ti, "/%u", tvb_get_uint8(tvb, offset));
offset += 1;
/* Metric */
proto_tree_add_item(rte_tree, hf_ripng_rte_metric, tvb, offset, 1, ENC_BIG_ENDIAN);
- proto_item_append_text(rte_ti, " Metric: %u", tvb_get_guint8(tvb, offset));
+ proto_item_append_text(rte_ti, " Metric: %u", tvb_get_uint8(tvb, offset));
offset += 1;
}
}
@@ -146,7 +146,7 @@ proto_register_ripng(void)
"The current metric for the destination; the value 16 (infinity) indicates that the destination is not reachable", HFILL }},
};
- static gint *ett[] = {
+ static int *ett[] = {
&ett_ripng,
&ett_ripng_rte,
};