arehbein has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-e1d/+/30708 )
Change subject: osmo-e1d: Transition to use of 'telnet_init_default' ......................................................................
osmo-e1d: Transition to use of 'telnet_init_default'
Related: OS#5809 Change-Id: I68fafc519d7c7ca9788bfcad7be1fadbb208cebe --- M src/osmo-e1d.c M src/osmo-e1gen.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/08/30708/1
diff --git a/src/osmo-e1d.c b/src/osmo-e1d.c index 2a07763..dc264d9 100644 --- a/src/osmo-e1d.c +++ b/src/osmo-e1d.c @@ -205,7 +205,7 @@ exit(2); }
- rv = telnet_init_dynif(g_e1d_ctx, e1d, vty_get_bind_addr(), OSMO_VTY_PORT_E1D); + rv = telnet_init_default(g_e1d_ctx, e1d, OSMO_VTY_PORT_E1D); if (rv != 0) { LOGP(DE1D, LOGL_FATAL, "Failed to bind VTY interface to %s:%u\n", vty_get_bind_addr(), OSMO_VTY_PORT_E1D); diff --git a/src/osmo-e1gen.c b/src/osmo-e1gen.c index 15d677a..008f083 100644 --- a/src/osmo-e1gen.c +++ b/src/osmo-e1gen.c @@ -411,7 +411,7 @@ exit(2); }
- rv = telnet_init_dynif(g_e1d_ctx, e1d, vty_get_bind_addr(), OSMO_VTY_PORT_E1D); + rv = telnet_init_default(g_e1d_ctx, e1d, OSMO_VTY_PORT_E1D); if (rv != 0) { LOGP(DE1D, LOGL_FATAL, "Failed to bind VTY interface to %s:%u\n", vty_get_bind_addr(), OSMO_VTY_PORT_E1D);