This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.orgHarald Welte has submitted this change and it was merged. ( https://gerrit.osmocom.org/9415 )
Change subject: VTY: Print some more information in "show conns"
......................................................................
VTY: Print some more information in "show conns"
We now print information such as
* SCCP connection ID
* MSC number
* handover decision2 fail count
* channel mode (SIGN/SPEECH)
* MGW endpoint
* secondary lchan (if any, e.g. during assignment)
* don't crash if conn->lchan == NULL
Change-Id: I2f8000844afc9da93ca39976399e5f76a45530de
---
M src/libbsc/bsc_vty.c
1 file changed, 13 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
Harald Welte: Looks good to me, approved
diff --git a/src/libbsc/bsc_vty.c b/src/libbsc/bsc_vty.c
index e53a14f..6c2257d 100644
--- a/src/libbsc/bsc_vty.c
+++ b/src/libbsc/bsc_vty.c
@@ -1515,6 +1515,18 @@
return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
}
+static void dump_one_subscr_conn(struct vty *vty, const struct gsm_subscriber_connection *conn)
+{
+ vty_out(vty, "conn ID=%u, MSC=%u, hodec2_fail=%d, mode=%s, mgw_ep=%s%s",
+ conn->sccp.conn_id, conn->sccp.msc->nr, conn->hodec2.failures,
+ get_value_string(gsm48_chan_mode_names, conn->user_plane.chan_mode),
+ conn->user_plane.mgw_endpoint, VTY_NEWLINE);
+ if (conn->lchan)
+ lchan_dump_full_vty(vty, conn->lchan);
+ if (conn->secondary_lchan)
+ lchan_dump_full_vty(vty, conn->secondary_lchan);
+}
+
DEFUN(show_subscr_conn,
show_subscr_conn_cmd,
"show conns",
@@ -1528,8 +1540,7 @@
vty_out(vty, "Active subscriber connections: %s", VTY_NEWLINE);
llist_for_each_entry(conn, &net->subscr_conns, entry) {
- vty_out(vty, "conn nr #%u:%s", count, VTY_NEWLINE);
- lchan_dump_full_vty(vty, conn->lchan);
+ dump_one_subscr_conn(vty, conn);
no_conns = false;
count++;
}
--
To view, visit https://gerrit.osmocom.org/9415
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I2f8000844afc9da93ca39976399e5f76a45530de
Gerrit-Change-Number: 9415
Gerrit-PatchSet: 3
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20180603/f4f56cdf/attachment.htm>