From 9f613e33055fdea2476996002895000498c2de71 Mon Sep 17 00:00:00 2001 From: Martin Mathieson Date: Fri, 8 May 2015 17:16:53 +0100 Subject: RRC: add domain and release cause information to the INFO column. Change-Id: If0bee7f283d6c4dd44618221d528fb55e30f510a Reviewed-on: https://code.wireshark.org/review/8353 Reviewed-by: Alexis La Goutte Petri-Dish: Alexis La Goutte Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- asn1/rrc/rrc.cnf | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'asn1') diff --git a/asn1/rrc/rrc.cnf b/asn1/rrc/rrc.cnf index bf164f486e..87b532725c 100644 --- a/asn1/rrc/rrc.cnf +++ b/asn1/rrc/rrc.cnf @@ -684,6 +684,7 @@ HNBName TYPE=FT_STRING DISPLAY=STR_UNICODE #.FN_BODY CN-DomainIdentity VAL_PTR = &nas_sys_info_gsm_map guint32 nas_sys_info_gsm_map; %(DEFAULT_BODY)s + col_append_fstr(actx->pinfo->cinfo, COL_INFO, "(%%s)", val_to_str_const(nas_sys_info_gsm_map,rrc_CN_DomainIdentity_vals,"Unknown")); actx->private_data = GUINT_TO_POINTER(nas_sys_info_gsm_map+1); #.FN_BODY CN-InformationInfo/cn-CommonGSM-MAP-NAS-SysInfo @@ -928,5 +929,11 @@ HNBName TYPE=FT_STRING DISPLAY=STR_UNICODE actx->private_data = GUINT_TO_POINTER(RRC_NAS_SYS_INFO_PS+1); %(DEFAULT_BODY)s +#.FN_BODY ReleaseCause VAL_PTR=&value + guint32 value; +%(DEFAULT_BODY)s + col_append_fstr(actx->pinfo->cinfo, COL_INFO, " [cause=%%s]", + val_to_str(value, rrc_ReleaseCause_vals, "Unknown")); + #.END -- cgit v1.2.3