mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-03 05:23:43 +00:00
mgcp: Speculative mgcp fix...
We really have 32 channels per multiplex... so use the right number... or at least it seems we do have 32.
This commit is contained in:
@@ -147,7 +147,7 @@ static inline int mgcp_timeslot_to_endpoint(int multiplex, int timeslot)
|
|||||||
{
|
{
|
||||||
if (timeslot == 0)
|
if (timeslot == 0)
|
||||||
timeslot = 1;
|
timeslot = 1;
|
||||||
return timeslot + (31 * multiplex);
|
return timeslot + (32 * multiplex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user