[PATCH] openbsc[master]: gsm0408: Adding log output for 3g specific RR messages

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

dexter gerrit-no-reply at lists.osmocom.org
Wed Oct 12 09:05:38 UTC 2016


Hello Jenkins Builder,

I'd like you to reexamine a change.  Please visit

    https://gerrit.osmocom.org/1037

to look at the new patch set (#2).

gsm0408: Adding log output for 3g specific RR messages

GSM 04.18, which is the successor of GSM 04.08, describes
additional RR 3g specific message types. This commit adds
adds log output for those messages. The behaviour is not
changed, all affected message types are still forwared
to the MSC as they were before.

See also 3GPP TS 04.18, section 10.4, table 10.4.1

The change requires to update libosmocore as well, see
also commit d26acf3a0352f7341774a32fc407c8ed7a98c0d2 in
libosmocore.git for details.

Change-Id: I41f2242fdf59c3eb4b3f8f7f003c17f7e0df01aa
---
M openbsc/src/libbsc/bsc_api.c
1 file changed, 24 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/openbsc refs/changes/37/1037/2

diff --git a/openbsc/src/libbsc/bsc_api.c b/openbsc/src/libbsc/bsc_api.c
index cc12e9f..0e12733 100644
--- a/openbsc/src/libbsc/bsc_api.c
+++ b/openbsc/src/libbsc/bsc_api.c
@@ -639,6 +639,30 @@
 			if (api->dtap)
 				api->dtap(conn, link_id, msg);
 			break;
+		case GSM48_MT_RR_UTRAN_CLSM_CHG:
+			LOGP(DRR, LOGL_NOTICE,
+			     "BSC: Passing RR UTRAN Classmark Change to MSC\n");
+			if (api->dtap)
+				api->dtap(conn, link_id, msg);
+			break;
+		case GSM48_MT_RR_CDMA2K_CLSM_CHG:
+			LOGP(DRR, LOGL_NOTICE,
+			     "BSC: Passing RR cdma 2000 Classmark Change to MSC\n");
+			if (api->dtap)
+				api->dtap(conn, link_id, msg);
+			break;
+		case GSM48_MT_RR_IS_TO_UTRAN_HANDO:
+			LOGP(DRR, LOGL_NOTICE,
+			     "BSC: Passing RR Inter System to UTRAN Handover Command to MSC\n");
+			if (api->dtap)
+				api->dtap(conn, link_id, msg);
+			break;
+		case GSM48_MT_RR_IS_TO_CDMA2K_HANDO:
+			LOGP(DRR, LOGL_NOTICE,
+			     "BSC: Inter System to cdma2000 Handover Command to MSC\n");
+			if (api->dtap)
+				api->dtap(conn, link_id, msg);
+			break;
 		default:
 			/* Normally, a MSC should never receive RR
 			 * messages, but we'd rather forward what we

-- 
To view, visit https://gerrit.osmocom.org/1037
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I41f2242fdf59c3eb4b3f8f7f003c17f7e0df01aa
Gerrit-PatchSet: 2
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: dexter <pmaier at sysmocom.de>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder



More information about the gerrit-log mailing list