[PATCH 1/8] debug: Add DSS category for supplementary service

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/OpenBSC@lists.osmocom.org/.

Sergey.Kostanbaev sergey.kostanbaev at gmail.com
Wed Nov 25 11:03:52 UTC 2015


From: Sergey Kostanbaev <sergey.kostanbaev at gmail.com>

This series of patches add support for external USSD processing via
simplified MAP-like protocol over SUP socket. As an example of a such
external application simple USSD to SIP proxy is provided (it targets
TS 124 390)

---
 openbsc/include/openbsc/debug.h | 1 +
 openbsc/src/libcommon/debug.c   | 6 ++++++
 2 files changed, 7 insertions(+)

diff --git a/openbsc/include/openbsc/debug.h b/openbsc/include/openbsc/debug.h
index 19d8fc2..10b0f46 100644
--- a/openbsc/include/openbsc/debug.h
+++ b/openbsc/include/openbsc/debug.h
@@ -33,6 +33,7 @@ enum {
 	DCTRL,
 	DSMPP,
 	DFILTER,
+	DSS,
 	Debug_LastEntry,
 };
 
diff --git a/openbsc/src/libcommon/debug.c b/openbsc/src/libcommon/debug.c
index 7fb3ecb..6536944 100644
--- a/openbsc/src/libcommon/debug.c
+++ b/openbsc/src/libcommon/debug.c
@@ -165,6 +165,12 @@ static const struct log_info_cat default_categories[] = {
 		.description = "BSC/NAT IMSI based filtering",
 		.enabled = 1, .loglevel = LOGL_DEBUG,
 	},
+	[DSS] = {
+		.name = "DSS",
+		.description = "Layer3 Supplementary Service (SS)",
+		.color = "\033[0;33m",
+		.enabled = 1, .loglevel = LOGL_DEBUG,
+	},
 };
 
 enum log_filter {
-- 
1.9.1




More information about the OpenBSC mailing list