dexter has submitted this change and it was merged. (
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(-)
Approvals:
Jenkins Builder: Verified
Pau Espin Pedrol: Looks good to me, approved
Stefan Sperling: Looks good to me, but someone else must approve
Vadim Yanitskiy: Looks good to me, but someone else must approve
diff --git a/src/libmsc/msc_vty.c b/src/libmsc/msc_vty.c
index b39775f..5622c02 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: merged
Gerrit-Change-Id: I000cafd5e41b9951d51b6bd6672ee68a224b8212
Gerrit-Change-Number: 12345
Gerrit-PatchSet: 3
Gerrit-Owner: dexter <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: Stefan Sperling <[email protected]>
Gerrit-Reviewer: Vadim Yanitskiy <[email protected]>
Gerrit-Reviewer: dexter <[email protected]>