osmo_rat_type: add OSMO_RAT_EUTRAN_SGS

osmo-msc is about to implement the SGs interface and requires a RAT indicator
for that.

Change-Id: I00588396bfe03feba38ecb0717d584594f0b2b46
This commit is contained in:
Neels Hofmeyr 2019-01-04 04:37:00 +01:00
parent 5b5c3499cf
commit 0d39a8de3c
2 changed files with 2 additions and 0 deletions

View File

@ -246,6 +246,7 @@ enum osmo_rat_type {
OSMO_RAT_UNKNOWN = 0,
OSMO_RAT_GERAN_A,
OSMO_RAT_UTRAN_IU,
OSMO_RAT_EUTRAN_SGS,
/* keep this last */
OSMO_RAT_COUNT

View File

@ -1003,5 +1003,6 @@ const struct value_string osmo_rat_type_names[] = {
{ OSMO_RAT_UNKNOWN, "unknown" },
{ OSMO_RAT_GERAN_A, "GERAN-A" },
{ OSMO_RAT_UTRAN_IU, "UTRAN-Iu" },
{ OSMO_RAT_EUTRAN_SGS, "EUTRAN-SGs" },
{}
};