arehbein has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-gbproxy/+/31185 )
Change subject: ctrl: Use ctrl_interface_setup()/ctrl_interface_setup2() instead of deprecated functions ......................................................................
ctrl: Use ctrl_interface_setup()/ctrl_interface_setup2() instead of deprecated functions
Related change: https://gerrit.osmocom.org/c/libosmocore/+/30444/12
Related: OS#5809 Change-Id: Ibc5f9d4c3dc8cd0b4644f82cdb99c65911fef08d --- M src/gb_proxy_main.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-gbproxy refs/changes/85/31185/1
diff --git a/src/gb_proxy_main.c b/src/gb_proxy_main.c index ba49a77..da69f9c 100644 --- a/src/gb_proxy_main.c +++ b/src/gb_proxy_main.c @@ -341,7 +341,7 @@
/* Start control interface after getting config for * ctrl_vty_get_bind_addr() */ - ctrl = ctrl_interface_setup_dynip(gbcfg, ctrl_vty_get_bind_addr(), OSMO_CTRL_PORT_GBPROXY, NULL); + ctrl = ctrl_interface_setup(gbcfg, OSMO_CTRL_PORT_GBPROXY, NULL); if (!ctrl) { LOGP(DGPRS, LOGL_FATAL, "Failed to create CTRL interface.\n"); exit(1);