aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs/gtphub_main.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-02-14 01:02:22 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-14 00:55:36 +0000
commit731930b6720c82f12dab4556ef6946335f24cf4f (patch)
tree5d01e61dde852b0a85bed522b44d1415acc6bde8 /src/gprs/gtphub_main.c
parente77ee12fd582a4847808d6db0edceb7c6f525400 (diff)
Add talloc context introspection via VTY
This requires libosmocore with Change-Id I43fc42880b22294d83c565ae600ac65e4f38b30d or later. Change-Id: I50eb1c5a28efbe4542e177ce3d0a236e75eecdd0
Diffstat (limited to 'src/gprs/gtphub_main.c')
-rw-r--r--src/gprs/gtphub_main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gprs/gtphub_main.c b/src/gprs/gtphub_main.c
index 3f7de5071..197c5e3ba 100644
--- a/src/gprs/gtphub_main.c
+++ b/src/gprs/gtphub_main.c
@@ -38,6 +38,7 @@
#include <osmocom/vty/logging.h>
#include <osmocom/vty/telnet_interface.h>
#include <osmocom/vty/ports.h>
+#include <osmocom/vty/misc.h>
#include <osmocom/sgsn/debug.h>
#include <osmocom/sgsn/gtphub.h>
@@ -336,6 +337,7 @@ int main(int argc, char **argv)
osmo_gtphub_ctx = talloc_named_const(NULL, 0, "osmo_gtphub");
msgb_talloc_ctx_init(osmo_gtphub_ctx, 0);
+ vty_info.tall_ctx = osmo_gtphub_ctx;
signal(SIGINT, &signal_handler);
signal(SIGTERM, &signal_handler);
@@ -349,6 +351,7 @@ int main(int argc, char **argv)
vty_info.copyright = gtphub_copyright;
vty_init(&vty_info);
logging_vty_add_cmds(NULL);
+ osmo_talloc_vty_add_cmds();
gtphub_vty_init(hub, cfg);
rate_ctr_init(osmo_gtphub_ctx);