summaryrefslogtreecommitdiff
path: root/plugins/wimax/mac_hd_type1_decoder.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-10-05 21:34:19 -0400
committerBill Meier <wmeier@newsguy.com>2014-10-06 01:42:32 +0000
commit0111e461938d47efd1eb8dc17f135b93b253ab52 (patch)
tree9409d7bf28086b3fd230993210264df1e884ec5b /plugins/wimax/mac_hd_type1_decoder.c
parent9e776a1ed114bb3982c061b41389143cb67b94de (diff)
downloadwireshark-0111e461938d47efd1eb8dc17f135b93b253ab52.tar.gz
plugins: Add editor modelines; Adjust whitespace as needed.
Change-Id: I36124f6021d46a228721bdc976f6b9fef1c8c088 Reviewed-on: https://code.wireshark.org/review/4488 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'plugins/wimax/mac_hd_type1_decoder.c')
-rw-r--r--plugins/wimax/mac_hd_type1_decoder.c31
1 files changed, 22 insertions, 9 deletions
diff --git a/plugins/wimax/mac_hd_type1_decoder.c b/plugins/wimax/mac_hd_type1_decoder.c
index 6a141f5350..3613dd357c 100644
--- a/plugins/wimax/mac_hd_type1_decoder.c
+++ b/plugins/wimax/mac_hd_type1_decoder.c
@@ -117,8 +117,8 @@ static const char *type1_subtype_abbrv[TYPE_I_SUBTYPE_MAX] =
#define WIMAX_MAC_HEADER_TYPE_1_RSV_7 0x000FFF
/* 4th to 6th bytes */
/*#define WIMAX_MAC_HEADER_TYPE_1_CID 0xFFFF
-*#define WIMAX_MAC_HEADER_TYPE_1_HCS 0xFF
-*/
+ *#define WIMAX_MAC_HEADER_TYPE_1_HCS 0xFF
+ */
/* Common Fields */
static int hf_mac_header_type_1_ht = -1;
static int hf_mac_header_type_1_ec = -1;
@@ -158,14 +158,14 @@ static int hf_mac_header_type_1_hcs = -1;
/* MAC Header Type I Sub-Types */
static const value_string sub_types[] =
{
- { BR_INCREMENTAL, "Bandwidth Request Incremental" },
- { BR_AGGREGATE, "Bandwidth Request Aggregate" },
- { PHY_CHANNEL_REPORT, "PHY Channel Report" },
+ { BR_INCREMENTAL, "Bandwidth Request Incremental" },
+ { BR_AGGREGATE, "Bandwidth Request Aggregate" },
+ { PHY_CHANNEL_REPORT, "PHY Channel Report" },
{ BR_WITH_UL_TX_POWER_REPORT, "Bandwidth Request with UL TX Power Report" },
- { BR_AND_CINR_REPORT, "Bandwidth Request and CINR Report" },
- { BR_WITH_UL_SLEEP_CONTROL, "Bandwidth Request with Sleep Control" },
- { SN_REPORT, "SN Report" },
- { CQICH_ALLOCATION_REQUEST, "CQICH Allocation Request" },
+ { BR_AND_CINR_REPORT, "Bandwidth Request and CINR Report" },
+ { BR_WITH_UL_SLEEP_CONTROL, "Bandwidth Request with Sleep Control" },
+ { SN_REPORT, "SN Report" },
+ { CQICH_ALLOCATION_REQUEST, "CQICH Allocation Request" },
{ 0, NULL}
};
@@ -558,3 +558,16 @@ void proto_register_mac_header_type_1(void)
register_dissector("mac_header_type_1_handler", dissect_mac_header_type_1_decoder, -1);
}
+
+/*
+ * Editor modelines - http://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:
+ */