aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gb_proxy_vty.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-05-11 05:49:43 +0200
committerHarald Welte <laforge@gnumonks.org>2010-05-11 05:49:43 +0200
commit85801d02940833729b6057d48b41df3ed0816207 (patch)
tree6772ffe9ec36a0d5e15037346a2aff591b3dbcbd /openbsc/src/gprs/gb_proxy_vty.c
parent1c0de6802c9b4ba77a110d96509b1de50eea3c7e (diff)
[gprs] gb_proxy: More VTY 'show' information
The 'show gbproxy' now actually shows information about the Gb proxy BTS peers, whereas 'show ns' shows information about existing NS links.
Diffstat (limited to 'openbsc/src/gprs/gb_proxy_vty.c')
-rw-r--r--openbsc/src/gprs/gb_proxy_vty.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/openbsc/src/gprs/gb_proxy_vty.c b/openbsc/src/gprs/gb_proxy_vty.c
index 16f6a1e0e..a40392b90 100644
--- a/openbsc/src/gprs/gb_proxy_vty.c
+++ b/openbsc/src/gprs/gb_proxy_vty.c
@@ -70,8 +70,8 @@ static int config_write_gbproxy(struct vty *vty)
return CMD_SUCCESS;
}
-DEFUN(show_gbproxy, show_gbproxy_cmd, "show gbproxy",
- SHOW_STR "Display information about the Gb proxy")
+DEFUN(show_ns, show_ns_cmd, "show ns",
+ SHOW_STR "Display information about the NS protocol")
{
/* FIXME: iterate over list of NS-VC's and display their state */
struct gprs_ns_inst *nsi = g_cfg->nsi;
@@ -176,6 +176,7 @@ DEFUN(cfg_nsip_sgsn_nsvci,
int gbproxy_vty_init(void)
{
+ install_element(VIEW_NODE, &show_ns_cmd);
install_element(VIEW_NODE, &show_gbproxy_cmd);
install_element(CONFIG_NODE, &cfg_gbproxy_cmd);