-
Notifications
You must be signed in to change notification settings - Fork 12
How are Calls joined together in JoinType.DIRECT mode?
wchen edited this page Jul 3, 2011
·
12 revisions
When the application joins to Call together, there are different permutations of underlying signaling message sequences based on the Calls' states and roles (UAC or UAS).
The relevant Call's states are defined below, based on the SIP implementation in Moho.
- Initialized: The Call is initialized but neither invited or inviting. The Call must be in INITIALIZED state. This applies to Outbound Call only.
- Unanswered: The Call is invited or inviting but no final response has been sent or received. The Call must in one of the INVITING, PROGRESSING, PROGRESSED, and RINGING states.
- Answered: The Call has received the final response. The Call must be ANSWERED state.
The following table shows the supported permutations when two Inbound Calls (UAS) are joined.
Inbound Call (UAS) | Inbound Call (UAS) | SIP Sequence | |
Unanswered | Unanswered | 7 | |
Answered | Unanswered | 5 | |
Answered | Answered | 1 |
The following table shows the supported permutations when an Inbound Calls (UAS) is joined with an Outbound Call (UAC).
Inbound Call (UAS) | Outbound Call (UAC) | SIP Sequence | |
Unanswered | Initialized | 8 | |
Unanswered | Unanswered | 5 | |
Answered | Answered | 1 |
1
3
2
5
8
6
7
9
10
4