Babel: New Message String Values

Added new message string values based on the information in rfc7557. 

Change-Id: I925b8c82433a6ad809eaec5d235eb42f703e3632
Reviewed-on: https://code.wireshark.org/review/15499
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
0xbismarck 2016-05-19 05:43:19 +02:00 committed by Anders Broman
parent cf4c86c7b2
commit 01830846ef
1 changed files with 12 additions and 0 deletions

View File

@ -68,7 +68,13 @@ static gint ett_subtree = -1;
#define MESSAGE_UPDATE 8
#define MESSAGE_REQUEST 9
#define MESSAGE_MH_REQUEST 10
#define MESSAGE_TS_PC 11
#define MESSAGE_HMAC 12
#define MESSAGE_SRC_UPDATE 13
#define MESSAGE_SRC_REQUEST 14
#define MESSAGE_SRC_SEQNO 15
/** message string values listed in rfc7557 */
static const value_string messages[] = {
{ MESSAGE_PAD1, "pad1"},
{ MESSAGE_PADN, "padn"},
@ -81,9 +87,15 @@ static const value_string messages[] = {
{ MESSAGE_UPDATE, "update"},
{ MESSAGE_REQUEST, "request"},
{ MESSAGE_MH_REQUEST, "mh-request"},
{ MESSAGE_TS_PC, "ts/pc"},
{ MESSAGE_HMAC, "hmac" },
{ MESSAGE_SRC_UPDATE, "source-specific-update"},
{ MESSAGE_SRC_REQUEST,"source-specific-req"},
{ MESSAGE_SRC_SEQNO, "source-specific-seqno"},
{ 0, NULL}
};
static const value_string aes[] = {
{ 0, "Wildcard" },
{ 1, "IPv4" },