Fix mncc socket name

For OpenBSC it made sense to have a /tmp/bsc_mncc file to share for
external MNCC, but now that we have an MSC osmo-sip-connector
communicates with that, so rename the socket file to avoid confusion.

Change-Id: I5e0dbf1aafe1b9c3776c49a08a76d64dd4fe9cc5
This commit is contained in:
Daniel Willmann 2018-08-30 09:09:02 +02:00
parent d4eb8babd0
commit baa5d7bdad
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
app
mncc
socket-path /tmp/bsc_mncc
socket-path /tmp/msc_mncc
sip
local 0.0.0.0 5060
remote pbx 5060

View File

@ -306,7 +306,7 @@ DEFUN(show_mncc_conn, show_mncc_conn_cmd,
void mncc_sip_vty_init(void)
{
/* default values */
g_app.mncc.path = talloc_strdup(tall_mncc_ctx, "/tmp/bsc_mncc");
g_app.mncc.path = talloc_strdup(tall_mncc_ctx, "/tmp/msc_mncc");
g_app.sip.local_addr = talloc_strdup(tall_mncc_ctx, "127.0.0.1");
g_app.sip.local_port = 5060;
g_app.sip.remote_addr = talloc_strdup(tall_mncc_ctx, "pbx");