osmo_ss7: Make sure to start server-side ASP FSM for dynamically created ASPs

Change-Id: I5dd079158a8c6b176a94dc251748924ef3e9c937
This commit is contained in:
Harald Welte 2017-04-11 18:37:40 +02:00
parent 2c2ae5997c
commit bba8fe8166
1 changed files with 4 additions and 1 deletions

View File

@ -1416,9 +1416,12 @@ static int xua_accept_cb(struct osmo_stream_srv_link *link, int fd)
snprintf(namebuf, sizeof(namebuf), "asp-dyn-%u", dyn_asp_num++);
asp = osmo_ss7_asp_find_or_create(oxs->inst, namebuf, 0, 0,
OSMO_SS7_ASP_PROT_M3UA);
if (asp)
if (asp) {
LOGP(DLSS7, LOGL_INFO, "%s: created dynamicASP %s\n",
sock_name, asp->cfg.name);
asp->cfg.is_server = true;
osmo_ss7_asp_restart(asp);
}
}
if (!asp) {
osmo_stream_srv_destroy(srv);