aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-08-08 13:46:03 +0200
committerpespin <pespin@sysmocom.de>2022-08-09 08:35:55 +0000
commit306400786d3f0d6c4cf037bbb14498a175ae0428 (patch)
tree970629bb4afff5c4c9da4eeda73d527cc0582f75
parent862dd363180f09d975f13030049d34d29bc96d70 (diff)
gsm: Add BTS feature for Osmux
This feature is used by the BTS to signal to the BSC that it supports using Osmux instead of RTP on the BTS<->BSC(MGW) data plane. Related: SYS#5987 Change-Id: Ie79bfb6d0a7a8fe2842d2596b3244e7b74a0d5b6
-rw-r--r--include/osmocom/gsm/bts_features.h1
-rw-r--r--src/gsm/bts_features.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/gsm/bts_features.h b/include/osmocom/gsm/bts_features.h
index 54f17ed3..ae372d39 100644
--- a/include/osmocom/gsm/bts_features.h
+++ b/include/osmocom/gsm/bts_features.h
@@ -33,6 +33,7 @@ enum osmo_bts_features {
BTS_FEAT_BCCH_POWER_RED,
BTS_FEAT_DYN_TS_SDCCH8, /* Osmo Dynamic TS supports configured as SDCCH8 */
BTS_FEAT_ACCH_TEMP_OVP, /* FACCH/SACCH Temporary overpower */
+ BTS_FEAT_OSMUX, /* Osmux (Osmocom RTP muxing) support */
_NUM_BTS_FEAT
};
diff --git a/src/gsm/bts_features.c b/src/gsm/bts_features.c
index 88a6fc34..785ad8a5 100644
--- a/src/gsm/bts_features.c
+++ b/src/gsm/bts_features.c
@@ -43,6 +43,7 @@ const struct value_string osmo_bts_features_descs[] = {
{ BTS_FEAT_BCCH_POWER_RED, "BCCH carrier power reduction mode" },
{ BTS_FEAT_DYN_TS_SDCCH8, "Dynamic Timeslot configuration as SDCCH8" },
{ BTS_FEAT_ACCH_TEMP_OVP, "FACCH/SACCH Temporary overpower" },
+ { BTS_FEAT_OSMUX, "Osmux (Osmocom RTP multiplexing)" },
{ 0, NULL }
};