PDCP-LTE: Show name alone with Cipher number in more places

Change-Id: Ib6290b55b82b3d61b6612809f652299479157d82
Reviewed-on: https://code.wireshark.org/review/36035
Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
This commit is contained in:
Martin Mathieson 2020-02-05 10:35:34 +00:00 committed by Martin Mathieson
parent 2580053638
commit 31effe3690
1 changed files with 8 additions and 8 deletions

View File

@ -426,18 +426,18 @@ static const value_string control_pdu_type_vals[] = {
};
static const value_string integrity_algorithm_vals[] = {
{ 0, "EIA0" },
{ 1, "EIA1" },
{ 2, "EIA2" },
{ 3, "EIA3" },
{ 0, "EIA0 (NULL)" },
{ 1, "EIA1 (SNOW3G)" },
{ 2, "EIA2 (AES)" },
{ 3, "EIA3 (ZUC)" },
{ 0, NULL }
};
static const value_string ciphering_algorithm_vals[] = {
{ 0, "EEA0" },
{ 1, "EEA1" },
{ 2, "EEA2" },
{ 3, "EEA3" },
{ 0, "EEA0 (NULL)" },
{ 1, "EEA1 (SNOW3G)" },
{ 2, "EEA2 (AES)" },
{ 3, "EEA3 (ZUC)" },
{ 0, NULL }
};