aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-tlv.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/docsis/packet-tlv.c')
-rw-r--r--plugins/docsis/packet-tlv.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/docsis/packet-tlv.c b/plugins/docsis/packet-tlv.c
index 5bf4199143..4520d58c48 100644
--- a/plugins/docsis/packet-tlv.c
+++ b/plugins/docsis/packet-tlv.c
@@ -535,31 +535,31 @@ dissect_reqxmit_policy (tvbuff_t * tvb, proto_tree * tree, guint16 start)
FALSE);
pol_tree = proto_item_add_subtree (it, ett_docsis_tlv_reqxmitpol);
- if (value & 0x100)
+ if (value & 0x01)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT use \"all CMs\" broadcast request opportunities");
- if (value & 0x80)
+ if (value & 0x02)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT use priority multicast request opportunities");
- if (value & 0x40)
+ if (value & 0x04)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT use Request/Data opportunities for requests");
- if (value & 0x20)
+ if (value & 0x08)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT use Request/Data opportunities for data");
if (value & 0x10)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT use piggy back requests with data");
- if (value & 0x08)
+ if (value & 0x20)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT concatenate data");
- if (value & 0x04)
+ if (value & 0x40)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT fragment data");
- if (value & 0x02)
+ if (value & 0x80)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST NOT suppress payload headers");
- if (value & 0x01)
+ if (value & 0x100)
proto_tree_add_text (pol_tree, tvb, start, 4,
"Service flow MUST drop packets that do not fit in the UGS size");
}