Update ASN.1 conformance files with the changes from r48634

svn path=/trunk/; revision=48741
This commit is contained in:
Pascal Quantin 2013-04-04 21:01:27 +00:00
parent 95bad136a0
commit 5312d37e93
3 changed files with 10 additions and 10 deletions

View File

@ -24,7 +24,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h282_RequestPDU_vals));
p = try_val_to_str(msg_type, VALS(h282_RequestPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RequestPDU/%s", p);
#.END
@ -35,7 +35,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h282_ResponsePDU_vals));
p = try_val_to_str(msg_type, VALS(h282_ResponsePDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "ResponsePDU/%s", p);
#.END
@ -46,7 +46,7 @@ NonCollapsingCapabilities
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h282_IndicationPDU_vals));
p = try_val_to_str(msg_type, VALS(h282_IndicationPDU_vals));
if (p)
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "IndicationPDU/%s", p);
#.END

View File

@ -19,7 +19,7 @@ LCTPDU
gint32 pdu_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(pdu_type, VALS(h283_T_pduType_vals));
p = try_val_to_str(pdu_type, VALS(h283_T_pduType_vals));
if (!info_is_set && p ) {
col_set_str(actx->pinfo->cinfo, COL_INFO, p);
info_is_set = TRUE;
@ -32,7 +32,7 @@ LCTPDU
gint32 data_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(data_type, VALS(h283_T_dataType_vals));
p = try_val_to_str(data_type, VALS(h283_T_dataType_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "RDCData/%s", p);
info_is_set = TRUE;
@ -45,7 +45,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTMessage_vals));
p = try_val_to_str(msg_type, VALS(h283_LCTMessage_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTMessage/%s", p);
info_is_set = TRUE;
@ -58,7 +58,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTRequest_vals));
p = try_val_to_str(msg_type, VALS(h283_LCTRequest_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTRequest/%s", p);
info_is_set = TRUE;
@ -71,7 +71,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTResponse_vals));
p = try_val_to_str(msg_type, VALS(h283_LCTResponse_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTResponse/%s", p);
info_is_set = TRUE;
@ -84,7 +84,7 @@ LCTPDU
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h283_LCTIndication_vals));
p = try_val_to_str(msg_type, VALS(h283_LCTIndication_vals));
if (!info_is_set && p ) {
col_add_fstr(actx->pinfo->cinfo, COL_INFO, "LCTIndication/%s", p);
info_is_set = TRUE;

View File

@ -22,7 +22,7 @@ Message
gint32 msg_type = -1;
const gchar *p = NULL;
#.FN_FTR
p = match_strval(msg_type, VALS(h501_MessageBody_vals));
p = try_val_to_str(msg_type, VALS(h501_MessageBody_vals));
if (p )
col_set_str(actx->pinfo->cinfo, COL_INFO, p);
#.END