aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-12-04 15:24:32 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-12-04 15:39:17 +0100
commitaccb78000b6161d5f76eae24e625c01533001b89 (patch)
treeda417c1c43d4fb18bf14e5c01c6793c000412201 /src
parentb593969dd790722935949191ef06226141b9d9fa (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/hnbgw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/hnbgw.c b/src/hnbgw.c
index 5c0570e..c1b931c 100644
--- a/src/hnbgw.c
+++ b/src/hnbgw.c
@@ -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);