That fuck shit the fascists are using
1package org.tm.archive.ringrtc;
2
3/**
4 *
5 * Enumeration of call state
6 *
7 */
8public enum CallState {
9
10 /** Idle, setting up objects */
11 IDLE,
12
13 /** Dialing. Outgoing call is signaling the remote peer */
14 DIALING,
15
16 /** Answering. Incoming call is responding to remote peer */
17 ANSWERING,
18
19 /** Remote ringing. Outgoing call, ICE negotiation is complete */
20 REMOTE_RINGING,
21
22 /** Local ringing. Incoming call, ICE negotiation is complete */
23 LOCAL_RINGING,
24
25 /** Connected. Incoming/Outgoing call, the call is connected */
26 CONNECTED,
27
28 /** Terminated. Incoming/Outgoing call, the call is terminated */
29 TERMINATED,
30
31 /** Busy. Outgoing call received a busy notification */
32 RECEIVED_BUSY;
33}