aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-08-10 17:20:44 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2017-08-30 14:16:56 +0200
commit0010b7e59a14e8569b337f0a6a3f4e7d764adc5b (patch)
treeddbc664af48a830a3acfa0a4aab19a20c818fd14 /src
parentee6cfdc0d9710e3a69c8e1939eb21c8f2b759885 (diff)
sccp init: pass no local m3ua addr to use defaults
Remove the FIXMEs because these addresses are configurable via the cs7 / {as,asp} vty commands. Change-Id: Ibafda0a9097183c26b21f3380d24dbe293e132e2
Diffstat (limited to 'src')
-rw-r--r--src/gprs/sgsn_main.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gprs/sgsn_main.c b/src/gprs/sgsn_main.c
index e24a57ba2..8ffc6c83d 100644
--- a/src/gprs/sgsn_main.c
+++ b/src/gprs/sgsn_main.c
@@ -479,10 +479,9 @@ int main(int argc, char **argv)
#if BUILD_IU
sccp = osmo_sccp_simple_client(tall_bsc_ctx, "OsmoSGSN",
2 /* FIXME: configurable */,
- OSMO_SS7_ASP_PROT_M3UA, 0,
- "127.0.0.4" /* FIXME: configurable */,
- M3UA_PORT,
- "127.0.0.1" /* FIXME: configurable */);
+ OSMO_SS7_ASP_PROT_M3UA,
+ 0, NULL,
+ 0, "127.0.0.1");
if (!sccp) {
printf("Setting up SCCP client failed.\n");
return 8;