Attention is currently required from: laforge.
1 comment:
File src/osmo-bsc/osmo_bsc_sigtran.c:
static struct bsc_msc_data *get_msc_by_pc(uint32_t pc)
{
struct bsc_msc_data *msc;
llist_for_each_entry(msc, msc_list, entry) {
if ((msc->a.msc_addr.presence & OSMO_SCCP_ADDR_T_PC) == 0)
continue;
if (msc->a.msc_addr.pc == pc)
return msc;
}
return NULL;
}
don't we somehow need to involve the sccp_instance in this? AFAICT we can have multiple MSCs within […]
gotcha, of course.
To view, visit change 32151. To unsubscribe, or for help writing mail filters, visit settings.