freetdm: added nowait mtp3 commands if proc ids dont match
This commit is contained in:
parent
1d3d165822
commit
7f746b4298
|
@ -751,7 +751,14 @@ int ftmod_ss7_disable_grp_mtp3Link(uint32_t procId)
|
||||||
cntrl.t.cntrl.action = AUBND_DIS; /* disable and unbind */
|
cntrl.t.cntrl.action = AUBND_DIS; /* disable and unbind */
|
||||||
cntrl.t.cntrl.subAction = SAGR_DSTPROCID; /* specificed element */
|
cntrl.t.cntrl.subAction = SAGR_DSTPROCID; /* specificed element */
|
||||||
|
|
||||||
return (sng_cntrl_mtp3(&pst, &cntrl));
|
if (g_ftdm_sngss7_data.cfg.procId == procId) {
|
||||||
|
SS7_DEBUG("Executing MTP3 cntrl command local pid =%i\n",procId);
|
||||||
|
return (sng_cntrl_mtp3(&pst, &cntrl));
|
||||||
|
} else {
|
||||||
|
SS7_WARN("Executing MTP3 cntrl command different local=%i target=%i\n",
|
||||||
|
g_ftdm_sngss7_data.cfg.procId,procId);
|
||||||
|
return (sng_cntrl_mtp3_nowait(&pst, &cntrl));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue