aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2020-06-07 22:53:31 +0200
committerAlexander Couzens <lynxis@fe80.eu>2020-07-28 13:58:46 +0200
commit03a421359d88f6d0a9b74206b6c41865942a384f (patch)
tree6a57fd111d60a8eb73a8c8da341bbd24566e1315
parenta087cdfb5ba9da2e6a6aece18a29ba990a92b5cd (diff)
bts_features: add feature BTS_FEAT_IPV6_NSVC
Previous both the IPA nanobts and the sysmobts has been using the IPv4 only OML attribute NM_ATT_IPACC_NS_LINK_CFG. A bts with BTS_FEAT_IPV6_NSVC supports IPv6 for NSVC (PCU<Gb>SGSN) using the new OML attribute NM_ATT_OSMO_NS_LINK_CFG. Change-Id: I9ef7949f66764b3c639e45eb440122e318da44a0
-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 22461a6b..341ba405 100644
--- a/include/osmocom/gsm/bts_features.h
+++ b/include/osmocom/gsm/bts_features.h
@@ -25,6 +25,7 @@ enum osmo_bts_features {
BTS_FEAT_SPEECH_H_AMR,
BTS_FEAT_ETWS_PN,
BTS_FEAT_PAGING_COORDINATION, /* BTS hands CS paging to PCU/PACCH */
+ BTS_FEAT_IPV6_NSVC,
_NUM_BTS_FEAT
};
diff --git a/src/gsm/bts_features.c b/src/gsm/bts_features.c
index 5a4b7f64..9a5188b2 100644
--- a/src/gsm/bts_features.c
+++ b/src/gsm/bts_features.c
@@ -40,6 +40,7 @@ const struct value_string osmo_bts_features_descs[] = {
{ BTS_FEAT_SPEECH_H_AMR, "Halfrate speech AMR" },
{ BTS_FEAT_ETWS_PN, "ETWS Primary Notification via PCH" },
{ BTS_FEAT_PAGING_COORDINATION, "BSS Paging Coordination" },
+ { BTS_FEAT_IPV6_NSVC, "NSVC IPv6" },
{ 0, NULL }
};