mpeg(dsmcc): Fixed range values

Fixed range values in message_discriminator_vals
and rsrc_attribute_vals.

Bug: 16015
Change-Id: Ib04b0be32fb8d58138913e643a38b95e64cdad7f
Reviewed-on: https://code.wireshark.org/review/34344
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Anthony Crawford 2019-08-23 09:46:22 -06:00 committed by Alexis La Goutte
parent 6bd541f969
commit 3f22907e8b

View file

@ -518,7 +518,7 @@ static const range_string dsmcc_un_sess_message_discriminator_vals[] = {
{ 0x01, 0x01, "Client and Network" },
{ 0x02, 0x02, "Server and Network" },
{ 0x03, 0x0f, "ISO/IEC 13818-6 Reserved" },
{ 0x04, 0xff, "Invalid"},
{ 0x10, 0xff, "Invalid"},
{ 0, 0, NULL }
};
@ -748,7 +748,7 @@ static const range_string dsmcc_un_sess_rsrc_attribute_vals[] = {
{ 0x02, 0x02, "Non-Mandatory Non-Negotiable" },
{ 0x03, 0x03, "Non-Mandatory Negotiable" },
{ 0x04, 0x0f, "Reserved"},
{ 0x05, 0xff, "Invalid"},
{ 0x10, 0xff, "Invalid"},
{ 0, 0, NULL }
};