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
This commit is contained in:
Pau Espin 2022-08-08 13:46:03 +02:00 committed by pespin
parent 862dd36318
commit 306400786d
2 changed files with 2 additions and 0 deletions

View File

@ -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
};

View File

@ -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 }
};