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
This commit is contained in:
Neels Hofmeyr 2017-08-10 17:20:44 +02:00
parent ee6cfdc0d9
commit 0010b7e59a
1 changed files with 3 additions and 4 deletions

View File

@ -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;