dexter has uploaded this change for review. ( https://gerrit.osmocom.org/12345
Change subject: msc_vty: display current RAN type
......................................................................
msc_vty: display current RAN type
When a subscriber is displayed the RAN type is not included in the
overview. Meanwhile the MSC supports multiple different ran types it
becomes important to see in which RAN the subscriber is currently
active.
Change-Id: I000cafd5e41b9951d51b6bd6672ee68a224b8212
Related: OS#3615
---
M src/libmsc/msc_vty.c
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/45/12345/1
diff --git a/src/libmsc/msc_vty.c b/src/libmsc/msc_vty.c
index 7e30165..4cd1c18 100644
--- a/src/libmsc/msc_vty.c
+++ b/src/libmsc/msc_vty.c
@@ -632,6 +632,8 @@
VTY_NEWLINE);
vty_out(vty, " LAC: %d/0x%x%s",
vsub->lac, vsub->lac, VTY_NEWLINE);
+ vty_out(vty, " RAN: %s%s",
+ ran_type_name(vsub->cs.attached_via_ran), VTY_NEWLINE);
vty_out(vty, " IMSI: %s%s", vsub->imsi, VTY_NEWLINE);
if (vsub->tmsi != GSM_RESERVED_TMSI)
vty_out(vty, " TMSI: %08X%s", vsub->tmsi,
--
To view, visit https://gerrit.osmocom.org/12345
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I000cafd5e41b9951d51b6bd6672ee68a224b8212
Gerrit-Change-Number: 12345
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <[email protected]>