You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From a softswitch provisioning standpoint the API will add to a local number:
max_channels (integer)
track_in (boolean)
track_out (boolean)
Most probably the channel tracking will be implemented client-side, but for outbound calls the decision to cut the call will be done carrier-side (because that's where emergency call detection happens). -> New SIP header CCNQ3-Cap: true (Capacity Reached) added by client-side proxy on outbound calls. Emergency calls are not counted.
If the system that tracks number of channels [redis, most probably] is unavailable we'll keep processing calls anyway. There might be situations where the number of effective in-use channels is larger than the number of allocated channels. (Call redirects might be especially tricky to track.)
A channel is deemed occupied from the time we receive an INVITE to the time the channels is released (response > 299 to the original INVITE, or received BYE).
The text was updated successfully, but these errors were encountered:
From a softswitch provisioning standpoint the API will add to a local number:
max_channels
(integer)track_in
(boolean)track_out
(boolean)Most probably the channel tracking will be implemented client-side, but for outbound calls the decision to cut the call will be done carrier-side (because that's where emergency call detection happens). -> New SIP header
CCNQ3-Cap: true
(Capacity Reached) added by client-side proxy on outbound calls. Emergency calls are not counted.If the system that tracks number of channels [
redis
, most probably] is unavailable we'll keep processing calls anyway. There might be situations where the number of effective in-use channels is larger than the number of allocated channels. (Call redirects might be especially tricky to track.)A channel is deemed occupied from the time we receive an INVITE to the time the channels is released (response > 299 to the original INVITE, or received BYE).
The text was updated successfully, but these errors were encountered: