arehbein has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/31188 )
Change subject: osmo-hnbgw: Transition to use of ctrl_interface_setup(), ctrl_interface_setup2() ......................................................................
osmo-hnbgw: Transition to use of ctrl_interface_setup(), ctrl_interface_setup2()
Related Change: I0fd87fd41fd3ac975273968d24f477daa3cd3aa9
Related: OS#5809 Change-Id: Iec6e9ed93b5cd04b231bca77a6832dc4c18b209f --- M src/osmo-hnbgw/hnbgw.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/88/31188/1
diff --git a/src/osmo-hnbgw/hnbgw.c b/src/osmo-hnbgw/hnbgw.c index 2836ae1..a8dfd6c 100644 --- a/src/osmo-hnbgw/hnbgw.c +++ b/src/osmo-hnbgw/hnbgw.c @@ -773,8 +773,8 @@ exit(1); }
- g_hnb_gw->ctrl = ctrl_interface_setup_dynip2(g_hnb_gw, ctrl_vty_get_bind_addr(), OSMO_CTRL_PORT_HNBGW, - hnb_ctrl_node_lookup, _LAST_CTRL_NODE_HNB); + g_hnb_gw->ctrl = ctrl_interface_setup2(g_hnb_gw, OSMO_CTRL_PORT_HNBGW, + hnb_ctrl_node_lookup, _LAST_CTRL_NODE_HNB); if (!g_hnb_gw->ctrl) { LOGP(DMAIN, LOGL_ERROR, "Failed to create CTRL interface on %s:%u\n", ctrl_vty_get_bind_addr(), OSMO_CTRL_PORT_HNBGW);