neels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/32040 )
Change subject: vty: 'show ue': show which HNB the UE is registered on ......................................................................
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(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
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")