jolly has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/33444 )
Change subject: ASCI: Also display group/broadcast call message names ......................................................................
ASCI: Also display group/broadcast call message names
gsm48_pdisc_msgtype_name* will include group and broadcast call control message names too.
Change-Id: I1874e61c24cd8e66b74171681d22f0bfe8069158 --- M src/gsm/gsm48.c 1 file changed, 17 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/src/gsm/gsm48.c b/src/gsm/gsm48.c index 53e0989..3ec7547 100644 --- a/src/gsm/gsm48.c +++ b/src/gsm/gsm48.c @@ -42,6 +42,7 @@ #include <osmocom/gsm/protocol/gsm_08_58.h> #include <osmocom/gsm/protocol/gsm_04_08_gprs.h> #include <osmocom/gsm/protocol/gsm_23_003.h> +#include <osmocom/gsm/protocol/gsm_44_068.h>
/*! \addtogroup gsm0408 * @{ @@ -1755,6 +1756,10 @@ case GSM48_PDISC_CC: msgt_names = gsm48_cc_msgtype_names; break; + case GSM48_PDISC_GROUP_CC: + case GSM48_PDISC_BCAST_CC: + msgt_names = osmo_gsm44068_msg_type_names; + break; case GSM48_PDISC_NC_SS: msgt_names = gsm48_nc_ss_msgtype_names; break;