neels submitted this change.
vty: 'show ue': show which HNB the UE is registered on
Change-Id: Ife54a105a5a011678d6a03d0032c7622c3079a28
---
M src/osmo-hnbgw/hnbgw_vty.c
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/src/osmo-hnbgw/hnbgw_vty.c b/src/osmo-hnbgw/hnbgw_vty.c
index 7f79b82..8d2366f 100644
--- a/src/osmo-hnbgw/hnbgw_vty.c
+++ b/src/osmo-hnbgw/hnbgw_vty.c
@@ -217,7 +217,8 @@
static void vty_dump_ue_info(struct vty *vty, struct ue_context *ue)
{
- vty_out(vty, "UE IMSI \"%s\" context ID %u%s", ue->imsi, ue->context_id, VTY_NEWLINE);
+ vty_out(vty, "UE IMSI \"%s\" context ID %u HNB %s%s", ue->imsi, ue->context_id,
+ hnb_context_name(ue->hnb), VTY_NEWLINE);
}
DEFUN(show_hnb, show_hnb_cmd, "show hnb all", SHOW_STR "Display information about all HNB")
To view, visit change 32040. To unsubscribe, or for help writing mail filters, visit settings.