aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan/gryphon/packet-gryphon.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2020-06-18 18:14:46 -0700
committerAnders Broman <a.broman58@gmail.com>2020-06-19 11:32:26 +0000
commite1d9a226a2b8f2824a0eb162a8dc972e6e6c2dd4 (patch)
tree75f56e3f0dde68ec92613cea3f482f7f426625de /plugins/epan/gryphon/packet-gryphon.c
parent51bb2c4d7f515a24659ba0c0048392a81becda4e (diff)
Fix the type of arrays of pointers to hf_ values for bitfield routines.
The static arrays are supposed to be arrays of const pointers to int, not arrays of non-const pointers to const int. Fixing that means some bugs (scribbling on what's *supposed* to be a const array) will be caught (see packet-ieee80211-radiotap.c for examples, the first of which inspired this change and the second of which was discovered while testing compiles with this change), and removes the need for some annoying casts. Also make some of those arrays static while we're at it. Update documentation and dissector-generator tools. Change-Id: I789da5fc60aadc15797cefecfd9a9fbe9a130ccc Reviewed-on: https://code.wireshark.org/review/37517 Petri-Dish: Guy Harris <gharris@sonic.net> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'plugins/epan/gryphon/packet-gryphon.c')
-rw-r--r--plugins/epan/gryphon/packet-gryphon.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/epan/gryphon/packet-gryphon.c b/plugins/epan/gryphon/packet-gryphon.c
index c78e94c722..a5834e1808 100644
--- a/plugins/epan/gryphon/packet-gryphon.c
+++ b/plugins/epan/gryphon/packet-gryphon.c
@@ -1010,7 +1010,7 @@ decode_data(tvbuff_t *tvb, int offset, proto_tree *pt)
nstime_t timestamp;
/*int hdrbits;*/
- static const int * data_mode_flags[] = {
+ static int * const data_mode_flags[] = {
&hf_gryphon_data_mode_transmitted,
&hf_gryphon_data_mode_receive,
&hf_gryphon_data_mode_local,
@@ -1230,7 +1230,7 @@ cmd_ioctl_details(tvbuff_t *tvb, int offset, proto_tree *pt, guint32 ui_command,
guint32 mtime;
guint16 us_nsched;
float value;
- static const int * ldf_schedule_flags[] = {
+ static int * const ldf_schedule_flags[] = {
&hf_gryphon_ldf_schedule_event,
&hf_gryphon_ldf_schedule_sporadic,
NULL
@@ -3132,7 +3132,7 @@ cmd_usdt_register_non_legacy(tvbuff_t *tvb, int offset, proto_tree *pt)
proto_tree *tree3;
proto_tree *tree4;
proto_tree *tree5;
- static const int * transmit_options_flags[] = {
+ static int * const transmit_options_flags[] = {
&hf_gryphon_usdt_transmit_options_flags_echo,
&hf_gryphon_usdt_transmit_options_action,
&hf_gryphon_usdt_transmit_options_done_event,
@@ -3140,14 +3140,14 @@ cmd_usdt_register_non_legacy(tvbuff_t *tvb, int offset, proto_tree *pt)
&hf_gryphon_usdt_transmit_options_rx_nth_fc,
NULL
};
- static const int * receive_options_flags[] = {
+ static int * const receive_options_flags[] = {
&hf_gryphon_usdt_receive_options_action,
&hf_gryphon_usdt_receive_options_firstframe_event,
&hf_gryphon_usdt_receive_options_lastframe_event,
&hf_gryphon_usdt_receive_options_tx_nth_fc,
NULL
};
- static const int * length_options_flags[] = {
+ static int * const length_options_flags[] = {
&hf_gryphon_usdt_length_control_j1939,
NULL
};
@@ -3481,20 +3481,20 @@ cmd_usdt(tvbuff_t *tvb, int offset, proto_tree *pt)
proto_tree_add_item(pt, hf_gryphon_usdt_flags_register, tvb, offset, 1, ENC_BIG_ENDIAN);
if (flags & 1) {
- static const int * action_flags[] = {
+ static int * const action_flags[] = {
&hf_gryphon_usdt_action_flags_register,
&hf_gryphon_usdt_action_flags_action,
NULL
};
- static const int * transmit_option_flags[] = {
+ static int * const transmit_option_flags[] = {
&hf_gryphon_usdt_transmit_options_flags_echo,
&hf_gryphon_usdt_transmit_options_action,
&hf_gryphon_usdt_transmit_options_send_done,
NULL
};
- static const int * receive_option_flags[] = {
+ static int * const receive_option_flags[] = {
&hf_gryphon_usdt_receive_options_action,
&hf_gryphon_usdt_receive_options_firstframe,
&hf_gryphon_usdt_receive_options_lastframe,
@@ -3567,7 +3567,7 @@ cmd_bits_in (tvbuff_t *tvb, int offset, proto_tree *pt)
msglen = tvb_reported_length_remaining(tvb, offset);
value = tvb_get_guint8(tvb, offset);
if (value) {
- static const int * digital_values[] = {
+ static int * const digital_values[] = {
&hf_gryphon_bits_in_input1,
&hf_gryphon_bits_in_input2,
&hf_gryphon_bits_in_input3,
@@ -3592,7 +3592,7 @@ cmd_bits_out (tvbuff_t *tvb, int offset, proto_tree *pt)
msglen = tvb_reported_length_remaining(tvb, offset);
value = tvb_get_guint8(tvb, offset);
if (value) {
- static const int * digital_values[] = {
+ static int * const digital_values[] = {
&hf_gryphon_bits_out_output1,
&hf_gryphon_bits_out_output2,
NULL
@@ -4242,7 +4242,7 @@ dissect_gryphon_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gbo
col_set_str(pinfo->cinfo, COL_INFO, val_to_str_const(frmtyp, frame_type, "- Invalid -"));
if (is_msgresp_add) {
- static const int * wait_flags[] = {
+ static int * const wait_flags[] = {
&hf_gryphon_wait_resp,
&hf_gryphon_wait_prev_resp,
NULL