osmo-hnbgw: don't configure specific local IP address for STP connection

It's not necessary to set a local IP to connect to OsmoSTP with, 'any' is as
good as any.

Related: OS#2663
Change-Id: If5d0a1500de5e2c4b80acf025761d0264a8a51a0
This commit is contained in:
Neels Hofmeyr 2017-12-04 15:24:32 +01:00
parent b593969dd7
commit accb78000b
1 changed files with 1 additions and 2 deletions

View File

@ -478,8 +478,7 @@ int main(int argc, char **argv)
ranap_set_log_area(DRANAP);
rc = hnbgw_cnlink_init(g_hnb_gw,
"127.0.0.1", M3UA_PORT, "127.0.0.5" /* FIXME: configurable */);
rc = hnbgw_cnlink_init(g_hnb_gw, "127.0.0.1", M3UA_PORT, NULL);
if (rc < 0) {
LOGP(DMAIN, LOGL_ERROR, "Failed to initialize SCCP link to CN\n");
exit(1);