aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q933.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-09-11 22:14:05 +0200
committerHarald Welte <laforge@osmocom.org>2020-09-11 23:42:00 +0200
commit13ac47ad4ecdf9ce4363d89f15a245fc10c3c67e (patch)
treedb0951834015ba88bd972fd3c7cd4c10fbaafca0 /epan/dissectors/packet-q933.c
parentee292b11a73e00ea3f5d1e2ee25cf9579f6c7532 (diff)
Q.933: Fix decoding of PVC Status field
This field is actually a bitmask of four bits. It's somewhat odd to decode it using a value_string. In any case, the values were plain wrong (shifted to the left by '1'). See Figure A.3 of ITU-T Q.933 A related pcap file can be found at https://people.osmocom.org/laforge/pcap/gsmtap-fr-q933-pvc_status.pcap
Diffstat (limited to 'epan/dissectors/packet-q933.c')
-rw-r--r--epan/dissectors/packet-q933.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-q933.c b/epan/dissectors/packet-q933.c
index b699d00de3..9ba1f231b7 100644
--- a/epan/dissectors/packet-q933.c
+++ b/epan/dissectors/packet-q933.c
@@ -1118,9 +1118,10 @@ dissect_q933_link_integrity_verf_ie(tvbuff_t *tvb, int offset, int len,
*/
static const value_string q933_pvc_status_vals[] = {
{0x00, "Inactive"},
- {0x02, "Active"},
- {0x08, "New"},
- {0x0a, "New, Active"},
+ {0x01, "Active"},
+ {0x02, "Deleted"},
+ {0x04, "New"},
+ {0x05, "New, Active"},
{0, NULL}
};