2012-04-18 21:44:51 +00:00
|
|
|
/*
|
|
|
|
Serval Voice Over Mesh Protocol (VoMP)
|
2012-08-02 01:59:37 +00:00
|
|
|
Copyright (C) 2012 Paul Gardner-Stephen
|
|
|
|
Copyright (C) 2012 Serval Project Inc.
|
2012-04-18 21:44:51 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-04-19 19:49:42 +00:00
|
|
|
VoMP works using a 6-state model of a phone call, and relies on MDP for
|
2012-04-18 21:44:51 +00:00
|
|
|
auth-cryption of frames. VoMP provides it's own replay protection.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serval.h"
|
2012-08-02 01:59:37 +00:00
|
|
|
#include "strbuf.h"
|
2012-08-13 08:52:17 +00:00
|
|
|
#include "strlcpy.h"
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Typical call state lifecycle between 2 parties.
|
|
|
|
Legend;
|
|
|
|
# incoming command from monitor client
|
|
|
|
$ outgoing monitor status
|
|
|
|
<> vomp packet with state change sent across the network
|
2012-08-08 01:26:05 +00:00
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
Monitor Init
|
2012-08-08 01:26:05 +00:00
|
|
|
# MONITOR VOMP [supported codec list]
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
Dialing
|
2012-08-08 01:26:05 +00:00
|
|
|
// client requests an outgoing call
|
|
|
|
# CALL [sid] [myDid] [TheirDid]
|
2012-08-06 05:16:46 +00:00
|
|
|
> CALLPREP + codecs
|
2012-08-08 01:26:05 +00:00
|
|
|
// let the client know what token we are going to use for the remainder of the call
|
|
|
|
$ CALLTO [token] [mySid] [myDid] [TheirSid] [TheirDid]
|
|
|
|
// allocate a session number and tell them our codecs,
|
|
|
|
// but we don't need to do anything else yet,
|
|
|
|
// this might be a replay attack
|
2012-08-06 05:16:46 +00:00
|
|
|
< NOCALL + codecs
|
2012-08-08 01:26:05 +00:00
|
|
|
// Ok, we have a network path, lets try to establish the call
|
2012-08-06 05:16:46 +00:00
|
|
|
> RINGOUT
|
2012-08-08 01:26:05 +00:00
|
|
|
// (Note that if both parties are trying to dial each other,
|
|
|
|
// the call should jump straight to INCALL)
|
|
|
|
// inform client about the call request
|
|
|
|
$ CALLFROM [token] [mySid] [myDid] [TheirSid] [TheirDid]
|
|
|
|
// Note that we may need to wait for other external processes
|
|
|
|
// before a phone is actually ringing
|
2012-08-06 05:16:46 +00:00
|
|
|
# RING [token]
|
2012-08-08 01:26:05 +00:00
|
|
|
< RINGIN
|
|
|
|
// All good, there's a phone out there ringing, you can indicate that to the user
|
2012-08-06 05:16:46 +00:00
|
|
|
$ RINGING [token]
|
|
|
|
|
|
|
|
Answering
|
|
|
|
# PICKUP [token]
|
|
|
|
< INCALL
|
2012-08-08 01:26:05 +00:00
|
|
|
// The client can now start sending audio
|
2012-08-06 05:16:46 +00:00
|
|
|
> INCALL
|
|
|
|
$ INCALL [token]
|
2012-08-08 01:26:05 +00:00
|
|
|
// The client can now start sending audio
|
2012-08-06 05:16:46 +00:00
|
|
|
$ INCALL [token]
|
|
|
|
|
|
|
|
Tell any clients that the call hasn't timed out yet
|
|
|
|
(if servald is behaving this should be redundant, if it isn't behaving how do we hangup?)
|
|
|
|
$ KEEPALIVE [token]
|
|
|
|
|
|
|
|
Hanging up (may also be triggered on network or call establishment timeout)
|
|
|
|
# HANGUP [token]
|
|
|
|
> CALLENDED
|
|
|
|
$ HANGUP [token]
|
|
|
|
< CALLENDED
|
|
|
|
$ HANGUP [token]
|
|
|
|
*/
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
// ideally these id's should only be used on the network, with monitor events to inform clients of state changes
|
|
|
|
#define VOMP_STATE_NOCALL 1
|
|
|
|
#define VOMP_STATE_CALLPREP 2
|
|
|
|
#define VOMP_STATE_RINGINGOUT 3
|
|
|
|
#define VOMP_STATE_RINGINGIN 4
|
|
|
|
#define VOMP_STATE_INCALL 5
|
|
|
|
#define VOMP_STATE_CALLENDED 6
|
2012-08-06 05:16:46 +00:00
|
|
|
|
2012-08-13 04:31:57 +00:00
|
|
|
struct vomp_call_half {
|
|
|
|
unsigned char sid[SID_SIZE];
|
|
|
|
char did[64];
|
|
|
|
unsigned char state;
|
|
|
|
unsigned char codec;
|
|
|
|
unsigned int session;
|
|
|
|
unsigned int sequence;
|
|
|
|
/* the following is from call creation, not start of audio flow */
|
|
|
|
unsigned long long milliseconds_since_call_start;
|
|
|
|
};
|
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
struct vomp_sample_block {
|
|
|
|
unsigned int codec;
|
|
|
|
int len;
|
|
|
|
time_ms_t starttime;
|
|
|
|
time_ms_t endtime;
|
|
|
|
unsigned char bytes[1024];
|
|
|
|
};
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state {
|
|
|
|
struct sched_ent alarm;
|
2012-08-13 04:31:57 +00:00
|
|
|
struct vomp_call_half local;
|
|
|
|
struct vomp_call_half remote;
|
2012-08-06 05:16:46 +00:00
|
|
|
int initiated_call;
|
|
|
|
int fast_audio;
|
|
|
|
time_ms_t create_time;
|
|
|
|
time_ms_t last_activity;
|
|
|
|
time_ms_t audio_clock;
|
|
|
|
int audio_started;
|
|
|
|
// last local & remote status we sent to all interested parties
|
|
|
|
int last_sent_status;
|
|
|
|
unsigned char remote_codec_list[256];
|
|
|
|
int recent_sample_rotor;
|
2012-08-13 06:45:10 +00:00
|
|
|
struct vomp_sample_block recent_samples[VOMP_MAX_RECENT_SAMPLES];
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
int sample_pos;
|
|
|
|
unsigned int seen_samples[VOMP_MAX_RECENT_SAMPLES *4];
|
|
|
|
};
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
/* Although we only support one call at a time, we allow for multiple call states.
|
|
|
|
This is partly to deal with denial of service attacks that might occur by causing
|
|
|
|
the ejection of newly allocated session numbers before the caller has had a chance
|
|
|
|
to progress the call to a further state. */
|
|
|
|
int vomp_call_count=0;
|
2012-04-19 19:49:42 +00:00
|
|
|
int vomp_active_call=-1;
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state vomp_call_states[VOMP_MAX_CALLS];
|
2012-07-03 05:43:39 +00:00
|
|
|
struct profile_total vomp_stats;
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
static void vomp_process_tick(struct sched_ent *alarm);
|
|
|
|
static const char *vomp_describe_codec(int c);
|
|
|
|
strbuf strbuf_append_vomp_supported_codecs(strbuf sb, const unsigned char supported_codecs[256]);
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-04-23 04:00:22 +00:00
|
|
|
/* which codecs we support (set by registered listener) */
|
|
|
|
unsigned char vomp_local_codec_list[256];
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *vomp_find_call_by_session(int session_token)
|
2012-04-19 19:49:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (session_token==vomp_call_states[i].local.session)
|
|
|
|
return &vomp_call_states[i];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
int vomp_generate_session_id()
|
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
int session_id=0;
|
|
|
|
while (!session_id)
|
|
|
|
{
|
|
|
|
if (urandombytes((unsigned char *)&session_id,sizeof(int)))
|
|
|
|
return WHY("Insufficient entropy");
|
|
|
|
session_id&=VOMP_SESSION_MASK;
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP) DEBUGF("session=0x%08x",session_id);
|
2012-07-03 05:43:39 +00:00
|
|
|
int i;
|
|
|
|
/* reject duplicate call session numbers */
|
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
if (session_id==vomp_call_states[i].local.session
|
|
|
|
||session_id==vomp_call_states[i].local.session){
|
|
|
|
session_id=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return session_id;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *vomp_create_call(unsigned char *remote_sid,
|
2012-07-03 05:43:39 +00:00
|
|
|
unsigned char *local_sid,
|
|
|
|
unsigned int remote_session,
|
2012-08-08 01:26:05 +00:00
|
|
|
unsigned int local_session)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
int i;
|
2012-07-03 05:43:39 +00:00
|
|
|
if (!local_session)
|
|
|
|
local_session=vomp_generate_session_id();
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call = &vomp_call_states[vomp_call_count];
|
2012-07-03 05:43:39 +00:00
|
|
|
vomp_call_count++;
|
|
|
|
|
|
|
|
/* prepare slot */
|
2012-08-06 05:16:46 +00:00
|
|
|
bzero(call,sizeof(struct vomp_call_state));
|
2012-07-03 05:43:39 +00:00
|
|
|
bcopy(local_sid,call->local.sid,SID_SIZE);
|
|
|
|
bcopy(remote_sid,call->remote.sid,SID_SIZE);
|
|
|
|
call->local.session=local_session;
|
|
|
|
call->remote.session=remote_session;
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.state=VOMP_STATE_NOCALL;
|
|
|
|
call->remote.state=VOMP_STATE_NOCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
call->last_sent_status=-1;
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-03 05:43:39 +00:00
|
|
|
call->last_activity=call->create_time;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
// fill sample cache with invalid times
|
|
|
|
for (i=0;i<VOMP_MAX_RECENT_SAMPLES *4;i++)
|
|
|
|
call->seen_samples[i]=0xFFFFFFFF;
|
|
|
|
|
2012-07-03 05:43:39 +00:00
|
|
|
call->alarm.alarm = call->create_time+VOMP_CALL_STATUS_INTERVAL;
|
|
|
|
call->alarm.function = vomp_process_tick;
|
|
|
|
vomp_stats.name="vomp_process_tick";
|
|
|
|
call->alarm.stats=&vomp_stats;
|
|
|
|
schedule(&call->alarm);
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("Returning new call #%d",local_session);
|
2012-07-03 05:43:39 +00:00
|
|
|
return call;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *vomp_find_or_create_call(unsigned char *remote_sid,
|
2012-04-18 21:44:51 +00:00
|
|
|
unsigned char *local_sid,
|
|
|
|
unsigned int sender_session,
|
2012-04-22 09:45:55 +00:00
|
|
|
unsigned int recvr_session,
|
2012-07-03 05:43:39 +00:00
|
|
|
int sender_state,
|
|
|
|
int recvr_state)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call;
|
2012-07-03 05:43:39 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("%d calls already in progress.",vomp_call_count);
|
2012-04-18 21:44:51 +00:00
|
|
|
for(i=0;i<vomp_call_count;i++)
|
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
call = &vomp_call_states[i];
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
/* do the fast comparison first, and only if that matches proceed to
|
|
|
|
the slower SID comparisons */
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("asking for %06x:%06x, this call %06x:%06x",
|
2012-04-24 05:10:30 +00:00
|
|
|
sender_session,recvr_session,
|
2012-07-03 05:43:39 +00:00
|
|
|
call->remote.session,
|
|
|
|
call->local.session);
|
2012-04-21 21:38:33 +00:00
|
|
|
|
|
|
|
int checked=0;
|
2012-07-03 05:43:39 +00:00
|
|
|
if (call->remote.session&&sender_session) {
|
2012-04-21 21:38:33 +00:00
|
|
|
checked++;
|
2012-07-03 05:43:39 +00:00
|
|
|
if(sender_session!=call->remote.session)
|
2012-04-21 21:38:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-07-03 05:43:39 +00:00
|
|
|
if (call->local.session&&recvr_session) {
|
2012-04-21 21:38:33 +00:00
|
|
|
checked++;
|
2012-07-03 05:43:39 +00:00
|
|
|
if(recvr_session!=call->local.session)
|
2012-04-21 21:38:33 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!checked) continue;
|
2012-07-03 05:43:39 +00:00
|
|
|
if (memcmp(remote_sid,call->remote.sid,SID_SIZE)) continue;
|
|
|
|
if (memcmp(local_sid,call->local.sid,SID_SIZE)) continue;
|
|
|
|
|
|
|
|
/* it matches. */
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-04-21 11:06:26 +00:00
|
|
|
/* Record session number if required */
|
2012-07-03 05:43:39 +00:00
|
|
|
if (!call->remote.session)
|
|
|
|
call->remote.session=sender_session;
|
2012-04-21 11:06:26 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP) {
|
|
|
|
DEBUGF("%06x:%06x matches call #%d %06x:%06x",
|
2012-04-24 05:10:30 +00:00
|
|
|
sender_session,recvr_session,i,
|
2012-07-03 05:43:39 +00:00
|
|
|
call->remote.session,
|
|
|
|
call->local.session);
|
2012-04-24 05:10:30 +00:00
|
|
|
}
|
2012-04-21 21:38:33 +00:00
|
|
|
|
2012-07-03 05:43:39 +00:00
|
|
|
return call;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* Don't create a call record if either party has ended it */
|
|
|
|
if (sender_state==VOMP_STATE_CALLENDED || recvr_state==VOMP_STATE_CALLENDED)
|
2012-04-22 09:45:55 +00:00
|
|
|
return NULL;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* Only create a call record if either party is in CALLPREP state */
|
|
|
|
if (sender_state==VOMP_STATE_CALLPREP || recvr_state==VOMP_STATE_CALLPREP)
|
2012-08-08 01:26:05 +00:00
|
|
|
return vomp_create_call(remote_sid, local_sid, sender_session, recvr_session);
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
return NULL;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-04-19 19:49:42 +00:00
|
|
|
/* send updated call status to end-point and to any interested listeners as
|
|
|
|
appropriate */
|
2012-04-21 11:51:26 +00:00
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
int vomp_send_status_remote(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
overlay_mdp_frame mdp;
|
2012-08-13 04:31:57 +00:00
|
|
|
unsigned short *len=&mdp.out.payload_length;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
bzero(&mdp,sizeof(mdp));
|
|
|
|
mdp.packetTypeAndFlags=MDP_TX;
|
|
|
|
bcopy(call->local.sid,mdp.out.src.sid,SID_SIZE);
|
|
|
|
mdp.out.src.port=MDP_PORT_VOMP;
|
|
|
|
bcopy(call->remote.sid,mdp.out.dst.sid,SID_SIZE);
|
|
|
|
mdp.out.dst.port=MDP_PORT_VOMP;
|
|
|
|
|
|
|
|
mdp.out.payload[0]=0x01; /* Normal VoMP frame */
|
|
|
|
mdp.out.payload[1]=(call->remote.state<<4)|call->local.state;
|
|
|
|
mdp.out.payload[2]=(call->remote.sequence>>8)&0xff;
|
|
|
|
mdp.out.payload[3]=(call->remote.sequence>>0)&0xff;
|
|
|
|
mdp.out.payload[4]=(call->local.sequence>>8)&0xff;
|
|
|
|
mdp.out.payload[5]=(call->local.sequence>>0)&0xff;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t call_millis = gettime_ms() - call->create_time;
|
2012-07-05 06:22:21 +00:00
|
|
|
mdp.out.payload[6]=(call_millis>>8)&0xff;
|
|
|
|
mdp.out.payload[7]=(call_millis>>0)&0xff;
|
|
|
|
mdp.out.payload[8]=(call->remote.session>>16)&0xff;
|
|
|
|
mdp.out.payload[9]=(call->remote.session>>8)&0xff;
|
|
|
|
mdp.out.payload[10]=(call->remote.session>>0)&0xff;
|
|
|
|
mdp.out.payload[11]=(call->local.session>>16)&0xff;
|
|
|
|
mdp.out.payload[12]=(call->local.session>>8)&0xff;
|
|
|
|
mdp.out.payload[13]=(call->local.session>>0)&0xff;
|
|
|
|
|
2012-08-13 04:31:57 +00:00
|
|
|
*len=14;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (call->local.state < VOMP_STATE_RINGINGOUT && call->remote.state < VOMP_STATE_RINGINGOUT) {
|
2012-08-13 04:31:57 +00:00
|
|
|
/* Include src and dst phone numbers */
|
|
|
|
int didLen;
|
|
|
|
|
|
|
|
/* Include the list of supported codecs */
|
2012-07-05 06:22:21 +00:00
|
|
|
int i;
|
2012-08-02 01:59:37 +00:00
|
|
|
for (i = 0; i < 256; ++i)
|
2012-07-05 06:22:21 +00:00
|
|
|
if (vomp_local_codec_list[i]) {
|
2012-08-13 04:31:57 +00:00
|
|
|
mdp.out.payload[(*len)++]=i;
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("I support the %s codec", vomp_describe_codec(i));
|
2012-04-23 04:00:22 +00:00
|
|
|
}
|
2012-08-13 04:31:57 +00:00
|
|
|
mdp.out.payload[(*len)++]=0;
|
|
|
|
|
|
|
|
if (call->initiated_call){
|
2012-08-13 06:45:10 +00:00
|
|
|
DEBUGF("Sending phone numbers %s, %s",call->local.did,call->remote.did);
|
|
|
|
didLen = snprintf((char *)(mdp.out.payload + *len), sizeof(mdp.out.payload) - *len, "%s", call->local.did);
|
|
|
|
*len+=didLen+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
didLen = snprintf((char *)(mdp.out.payload + *len), sizeof(mdp.out.payload) - *len, "%s", call->remote.did);
|
2012-08-13 06:45:10 +00:00
|
|
|
*len+=didLen+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("mdp frame with codec list is %d bytes", mdp.out.payload_length);
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
2012-05-06 12:53:58 +00:00
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
if (call->local.state==VOMP_STATE_INCALL) {
|
2012-07-05 06:22:21 +00:00
|
|
|
unsigned char *p=&mdp.out.payload[0];
|
2012-08-13 06:45:10 +00:00
|
|
|
struct vomp_sample_block *sb=call->recent_samples;
|
2012-07-05 06:22:21 +00:00
|
|
|
int rotor=call->recent_sample_rotor%VOMP_MAX_RECENT_SAMPLES;
|
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
if (sb[rotor].len==vomp_sample_size(sb[rotor].codec)){
|
|
|
|
/* write the sample end-time in milliseconds since call establishment */
|
|
|
|
p[(*len)++]=(call->audio_clock>>24)&0xff;
|
|
|
|
p[(*len)++]=(call->audio_clock>>16)&0xff;
|
|
|
|
p[(*len)++]=(call->audio_clock>>8)&0xff;
|
|
|
|
p[(*len)++]=(call->audio_clock>>0)&0xff;
|
|
|
|
|
|
|
|
/* stuff frame with most recent sample blocks as a form of preemptive
|
|
|
|
retransmission. But don't make the packets too large. */
|
|
|
|
while (((*len)+1+sb[rotor].len) <VOMP_STUFF_BYTES && sb[rotor].len==vomp_sample_size(sb[rotor].codec)) {
|
|
|
|
p[(*len)++]=sb[rotor].codec;
|
|
|
|
bcopy(&sb[rotor].bytes[0],&p[*len],sb[rotor].len);
|
|
|
|
(*len)+=sb[rotor].len;
|
|
|
|
|
|
|
|
rotor--; if (rotor<0) rotor+=VOMP_MAX_RECENT_SAMPLES;
|
|
|
|
rotor%=VOMP_MAX_RECENT_SAMPLES;
|
|
|
|
|
|
|
|
// stop if we've run out of samples before we ran out of bytes
|
|
|
|
if ((!sb[rotor].endtime)||(sb[rotor].endtime+1==call->audio_clock)) break;
|
|
|
|
}
|
|
|
|
call->recent_sample_rotor++;
|
|
|
|
call->recent_sample_rotor%=VOMP_MAX_RECENT_SAMPLES;
|
2012-04-21 11:06:26 +00:00
|
|
|
}
|
2012-04-19 22:32:03 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* XXX Here we act as our own client. This used to be able to block.
|
|
|
|
We should really refactor overlay_mdp_poll() so that we can deliver
|
|
|
|
the frame directly.
|
|
|
|
Make sure that we don't want (just drop the message if there is
|
|
|
|
congestion) */
|
|
|
|
|
2012-09-14 06:20:04 +00:00
|
|
|
overlay_mdp_dispatch(&mdp,0,NULL,0);
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
call->local.sequence++;
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-19 22:32:03 +00:00
|
|
|
|
2012-08-13 06:45:10 +00:00
|
|
|
// copy audio into the rotor buffers
|
|
|
|
int vomp_received_audio(struct vomp_call_state *call, int audio_codec, const unsigned char *audio, int audio_length)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-08-13 06:45:10 +00:00
|
|
|
int codec_block_size=vomp_sample_size(audio_codec);
|
|
|
|
int offset=0;
|
|
|
|
struct vomp_sample_block *sb=call->recent_samples;
|
|
|
|
|
|
|
|
while(offset<audio_length){
|
|
|
|
|
|
|
|
int rotor=call->recent_sample_rotor%VOMP_MAX_RECENT_SAMPLES;
|
|
|
|
|
2012-08-21 03:23:56 +00:00
|
|
|
if (sb[rotor].len==0 || call->audio_clock!=sb[rotor].endtime+1){
|
2012-08-13 06:45:10 +00:00
|
|
|
/*
|
|
|
|
What timestamp to attach to the sample?
|
|
|
|
Two obvious choices:
|
|
|
|
1. The sample is for the most recent n milliseconds; or
|
|
|
|
2. The sample is for the next n milliseconds following the
|
|
|
|
last sample.
|
|
|
|
|
|
|
|
Option 1 introduces all sorts of problems with sample production
|
|
|
|
jitter, where as option 2 has no such problems, but simply requires the
|
|
|
|
producer of audio to ensure that they provide exactly the right amount
|
|
|
|
of audio, or risk the call getting out of sync. This is a fairly
|
|
|
|
reasonable expectation, or else things go to pot.
|
|
|
|
|
|
|
|
Note that in-call slew is the responsibility of the player, not the
|
|
|
|
recorder of audio. Basically if the audio queue starts to bank up,
|
|
|
|
then the player needs to drop samples.
|
|
|
|
*/
|
|
|
|
|
|
|
|
sb[rotor].codec=audio_codec;
|
2012-08-21 03:23:56 +00:00
|
|
|
sb[rotor].len=0;
|
2012-08-13 06:45:10 +00:00
|
|
|
sb[rotor].starttime=call->audio_clock;
|
2012-08-21 03:23:56 +00:00
|
|
|
sb[rotor].endtime=call->audio_clock+vomp_codec_timespan(sb[rotor].codec)-1;
|
2012-08-13 06:45:10 +00:00
|
|
|
call->audio_clock=sb[rotor].endtime+1;
|
|
|
|
}else if(sb[rotor].codec!=audio_codec){
|
|
|
|
WHY("Did not finish previous audio buffer!!");
|
|
|
|
}
|
|
|
|
|
|
|
|
int copy_size = (audio_length - offset);
|
|
|
|
if (copy_size > codec_block_size - sb[rotor].len)
|
|
|
|
copy_size=codec_block_size - sb[rotor].len;
|
|
|
|
|
|
|
|
bcopy(audio + offset,&sb[rotor].bytes[sb[rotor].len],copy_size);
|
|
|
|
sb[rotor].len+=copy_size;
|
|
|
|
offset+=copy_size;
|
|
|
|
|
|
|
|
// send audio whenever we get the right number of bytes.
|
|
|
|
if (sb[rotor].len>=codec_block_size){
|
|
|
|
vomp_send_status_remote(call);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int monitor_call_status(struct vomp_call_state *call)
|
|
|
|
{
|
|
|
|
char msg[1024];
|
|
|
|
int n = snprintf(msg,1024,"\nCALLSTATUS:%06x:%06x:%d:%d:%d:%s:%s:%s:%s\n",
|
|
|
|
call->local.session,call->remote.session,
|
|
|
|
call->local.state,call->remote.state,
|
|
|
|
call->fast_audio,
|
|
|
|
alloca_tohex_sid(call->local.sid),
|
|
|
|
alloca_tohex_sid(call->remote.sid),
|
|
|
|
call->local.did,call->remote.did);
|
|
|
|
|
|
|
|
monitor_tell_clients(msg, n, MONITOR_VOMP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-21 03:24:14 +00:00
|
|
|
int monitor_send_audio(struct vomp_call_state *call, int audio_codec, unsigned int start_time, unsigned int end_time, const unsigned char *audio, int audio_length, int sequence)
|
2012-08-06 05:16:46 +00:00
|
|
|
{
|
|
|
|
if (0) DEBUGF("Tell call monitor about audio for call %06x:%06x",
|
|
|
|
call->local.session,call->remote.session);
|
|
|
|
int sample_bytes=vomp_sample_size(audio_codec);
|
|
|
|
char msg[1024 + MAX_AUDIO_BYTES];
|
|
|
|
/* All commands followed by binary data start with *len:, so that
|
|
|
|
they can be easily parsed at the far end, even if not supported.
|
|
|
|
Put newline at start of these so that receiving data in command
|
|
|
|
mode doesn't confuse the parser. */
|
|
|
|
int msglen = snprintf(msg, 1024,
|
2012-08-21 03:24:14 +00:00
|
|
|
"\n*%d:AUDIOPACKET:%x:%d:%d:%d:%d\n",
|
2012-08-06 05:16:46 +00:00
|
|
|
sample_bytes,
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
2012-08-21 03:24:14 +00:00
|
|
|
audio_codec, start_time, end_time,
|
|
|
|
sequence);
|
2012-08-06 05:16:46 +00:00
|
|
|
|
|
|
|
bcopy(audio, &msg[msglen], sample_bytes);
|
|
|
|
msglen+=sample_bytes;
|
|
|
|
msg[msglen++]='\n';
|
|
|
|
monitor_tell_clients(msg, msglen, MONITOR_VOMP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
// update local state and notify interested clients with the correct message
|
|
|
|
int vomp_update_local_state(struct vomp_call_state *call, int new_state){
|
|
|
|
if (call->local.state>=new_state)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch(new_state){
|
|
|
|
case VOMP_STATE_CALLPREP:
|
|
|
|
// tell client our session id.
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nCALLTO:%06x:%s:%s:%s:%s\n",
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
|
|
|
alloca_tohex_sid(call->local.sid), call->local.did,
|
|
|
|
alloca_tohex_sid(call->remote.sid), call->remote.did);
|
|
|
|
break;
|
|
|
|
case VOMP_STATE_CALLENDED:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nHANGUP:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
call->local.state=new_state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update remote state and notify interested clients with the correct message
|
|
|
|
int vomp_update_remote_state(struct vomp_call_state *call, int new_state){
|
|
|
|
if (call->remote.state>=new_state)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch(new_state){
|
|
|
|
case VOMP_STATE_RINGINGOUT:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nCALLFROM:%06x:%s:%s:%s:%s\n",
|
2012-08-08 01:26:05 +00:00
|
|
|
call->local.session,
|
|
|
|
alloca_tohex_sid(call->local.sid), call->local.did,
|
|
|
|
alloca_tohex_sid(call->remote.sid), call->remote.did);
|
|
|
|
break;
|
|
|
|
case VOMP_STATE_RINGINGIN:
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nRINGING:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
break;
|
|
|
|
case VOMP_STATE_INCALL:
|
|
|
|
if (call->remote.state==VOMP_STATE_RINGINGIN){
|
2012-08-09 02:23:45 +00:00
|
|
|
monitor_tell_formatted(MONITOR_VOMP, "\nANSWERED:%06x\n", call->local.session);
|
2012-08-08 01:26:05 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
call->remote.state=new_state;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// send call state updates if required.
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_update(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
int combined_status=(call->remote.state<<4)|call->local.state;
|
|
|
|
|
|
|
|
if (call->last_sent_status==combined_status)
|
|
|
|
return 0;
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("Call state changed to %d %d, sending updates",call->local.state, call->remote.state);
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
call->last_sent_status=combined_status;
|
|
|
|
|
|
|
|
// tell the remote party
|
|
|
|
vomp_send_status_remote(call);
|
|
|
|
|
|
|
|
// tell monitor clients
|
2012-08-06 05:16:46 +00:00
|
|
|
if (monitor_socket_count && monitor_client_interested(MONITOR_VOMP))
|
2012-07-05 06:22:21 +00:00
|
|
|
monitor_call_status(call);
|
|
|
|
|
2012-04-19 22:32:03 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_call_start_audio(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-04-22 09:45:55 +00:00
|
|
|
call->audio_started=1;
|
2012-04-18 21:44:51 +00:00
|
|
|
return WHY("Not implemented");
|
|
|
|
}
|
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// check a small circular buffer of recently seen audio
|
|
|
|
// we're not trying to be perfect here, we still expect all clients to reorder and filter duplicates
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_audio_already_seen(struct vomp_call_state *call, unsigned int end_time)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<VOMP_MAX_RECENT_SAMPLES *4;i++)
|
|
|
|
if (call->seen_samples[i]==end_time)
|
|
|
|
return 1;
|
|
|
|
call->seen_samples[call->sample_pos]=end_time;
|
|
|
|
call->sample_pos++;
|
|
|
|
if (call->sample_pos>=VOMP_MAX_RECENT_SAMPLES *4)
|
|
|
|
call->sample_pos=0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_process_audio(struct vomp_call_state *call,unsigned int sender_duration,overlay_mdp_frame *mdp)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-04-24 09:03:40 +00:00
|
|
|
int ofs=14;
|
2012-05-08 22:05:05 +00:00
|
|
|
// if (mdp->in.payload_length>14)
|
2012-08-02 01:59:37 +00:00
|
|
|
// DEBUGF("got here (payload has %d bytes)",mdp->in.payload_length);
|
2012-04-24 10:56:16 +00:00
|
|
|
|
|
|
|
/* Get end time marker for sample block collection */
|
2012-07-06 00:44:39 +00:00
|
|
|
unsigned int e=0, s=0;
|
2012-04-24 10:56:16 +00:00
|
|
|
e=mdp->in.payload[ofs++]<<24;
|
|
|
|
e|=mdp->in.payload[ofs++]<<16;
|
|
|
|
e|=mdp->in.payload[ofs++]<<8;
|
|
|
|
e|=mdp->in.payload[ofs++]<<0;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
sender_duration = (e&0xFFFF0000)|sender_duration;
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
2012-08-09 02:44:32 +00:00
|
|
|
DEBUGF("Jitter %d, %lld", sender_duration - e, (long long)((gettime_ms() - call->create_time) - e));
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-21 03:24:14 +00:00
|
|
|
int sequence = call->remote.sequence;
|
|
|
|
|
2012-04-24 09:03:40 +00:00
|
|
|
while(ofs<mdp->in.payload_length)
|
|
|
|
{
|
|
|
|
int codec=mdp->in.payload[ofs];
|
2012-08-02 01:59:37 +00:00
|
|
|
// DEBUGF("Spotted a %s sample block",vomp_describe_codec(codec));
|
2012-04-24 09:03:40 +00:00
|
|
|
if (!codec||vomp_sample_size(codec)<0) break;
|
2012-04-24 09:25:57 +00:00
|
|
|
if ((ofs+1+vomp_sample_size(codec))>mdp->in.payload_length) break;
|
|
|
|
|
2012-04-24 10:56:16 +00:00
|
|
|
/* work out start-time from end-time less duration of included sample(s).
|
|
|
|
XXX - Assumes only non-adaptive codecs. */
|
2012-07-05 06:22:21 +00:00
|
|
|
s = e-vomp_codec_timespan(codec)+1;
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-04-24 09:03:40 +00:00
|
|
|
/* Pass audio frame to all registered listeners */
|
2012-07-05 06:22:21 +00:00
|
|
|
if (!vomp_audio_already_seen(call, e)){
|
|
|
|
if (monitor_socket_count)
|
|
|
|
monitor_send_audio(call, codec, s, e,
|
|
|
|
&mdp->in.payload[ofs+1],
|
2012-08-21 03:24:14 +00:00
|
|
|
vomp_sample_size(codec),
|
|
|
|
sequence);
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
2012-04-24 09:03:40 +00:00
|
|
|
ofs+=1+vomp_sample_size(codec);
|
2012-07-05 06:22:21 +00:00
|
|
|
e=s-1;
|
2012-08-21 03:24:14 +00:00
|
|
|
sequence--;
|
2012-04-24 09:03:40 +00:00
|
|
|
}
|
2012-04-24 05:10:30 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_call_stop_audio(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-04-22 09:45:55 +00:00
|
|
|
call->audio_started=0;
|
2012-04-18 21:44:51 +00:00
|
|
|
return WHY("Not implemented");
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_ringing(struct vomp_call_state *call){
|
2012-07-31 06:15:24 +00:00
|
|
|
if (call){
|
2012-08-13 06:45:10 +00:00
|
|
|
if ((!call->initiated_call) && call->local.state<VOMP_STATE_RINGINGIN && call->remote.state==VOMP_STATE_RINGINGOUT){
|
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("RING RING!");
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_RINGINGIN);
|
2012-07-31 06:15:24 +00:00
|
|
|
vomp_update(call);
|
2012-08-13 06:45:10 +00:00
|
|
|
}else
|
|
|
|
return WHY("Can't ring, call is not being dialled");
|
2012-07-31 06:15:24 +00:00
|
|
|
}
|
2012-04-19 20:25:58 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_call_destroy(struct vomp_call_state *call)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
2012-04-19 20:25:58 +00:00
|
|
|
/* do some general clean ups */
|
2012-04-18 21:44:51 +00:00
|
|
|
if (call->audio_started) vomp_call_stop_audio(call);
|
2012-04-19 20:25:58 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("Destroying call %s <--> %s", call->local.did,call->remote.did);
|
2012-04-19 20:25:58 +00:00
|
|
|
|
2012-04-22 09:45:55 +00:00
|
|
|
/* tell everyone the call has died */
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLENDED);
|
2012-07-05 06:22:21 +00:00
|
|
|
vomp_update(call);
|
2012-04-22 09:45:55 +00:00
|
|
|
|
2012-04-19 20:25:58 +00:00
|
|
|
/* now release the call structure */
|
2012-07-03 05:43:39 +00:00
|
|
|
int i = (call - vomp_call_states);
|
|
|
|
unschedule(&call->alarm);
|
|
|
|
|
|
|
|
vomp_call_count--;
|
|
|
|
if (i!=vomp_call_count){
|
|
|
|
unschedule(&vomp_call_states[vomp_call_count].alarm);
|
|
|
|
bcopy(&vomp_call_states[vomp_call_count],
|
|
|
|
call,
|
2012-08-06 05:16:46 +00:00
|
|
|
sizeof(struct vomp_call_state));
|
2012-07-03 05:43:39 +00:00
|
|
|
schedule(&call->alarm);
|
|
|
|
}
|
2012-04-19 20:25:58 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
int vomp_dial(unsigned char *local_sid, unsigned char *remote_sid, char *local_did, char *remote_did)
|
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
/* TODO use local_did and remote_did start putting the call together.
|
|
|
|
These need to be passed to the node being called to provide caller id,
|
|
|
|
and potentially handle call-routing, e.g., if it is a gateway.
|
|
|
|
*/
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUG("Dialing");
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
if (vomp_call_count>=VOMP_MAX_CALLS)
|
|
|
|
return WHY("All call slots in use");
|
|
|
|
|
|
|
|
/* allocate unique call session token, which is how the client will
|
|
|
|
refer to this call during its life */
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call=vomp_create_call(
|
2012-07-05 06:22:21 +00:00
|
|
|
remote_sid,
|
|
|
|
local_sid,
|
|
|
|
0,
|
2012-08-08 01:26:05 +00:00
|
|
|
0);
|
2012-08-13 04:31:57 +00:00
|
|
|
|
|
|
|
/* Copy local / remote phone numbers */
|
|
|
|
strlcpy(call->local.did, local_did, sizeof(call->local.did));
|
|
|
|
strlcpy(call->remote.did, remote_did, sizeof(call->remote.did));
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLPREP);
|
2012-07-05 06:22:21 +00:00
|
|
|
// remember that we initiated this call, not the other party
|
|
|
|
call->initiated_call = 1;
|
|
|
|
|
|
|
|
/* send status update to remote, thus causing call to be created
|
|
|
|
(hopefully) at far end. */
|
|
|
|
vomp_update(call);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_pickup(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
if (call){
|
2012-08-10 01:15:01 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
2012-08-02 01:59:37 +00:00
|
|
|
DEBUG("Picking up");
|
2012-08-13 06:45:10 +00:00
|
|
|
if (call->local.state<=VOMP_STATE_RINGINGIN && call->remote.state==VOMP_STATE_RINGINGOUT){
|
|
|
|
vomp_update_local_state(call, VOMP_STATE_INCALL);
|
|
|
|
call->create_time=gettime_ms();
|
|
|
|
/* state machine does job of starting audio stream, just tell everyone about
|
|
|
|
the changed state. */
|
|
|
|
vomp_update(call);
|
|
|
|
}else
|
|
|
|
return WHY("Can't pickup, call is not ringing");
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_hangup(struct vomp_call_state *call)
|
2012-08-02 01:59:37 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
if (call){
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUG("Hanging up");
|
2012-07-05 06:22:21 +00:00
|
|
|
if (call->local.state==VOMP_STATE_INCALL) vomp_call_stop_audio(call);
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_local_state(call, VOMP_STATE_CALLENDED);
|
2012-07-05 06:22:21 +00:00
|
|
|
vomp_update(call);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
int vomp_extract_remote_codec_list(struct vomp_call_state *call,overlay_mdp_frame *mdp)
|
2012-04-23 07:22:10 +00:00
|
|
|
{
|
2012-08-13 04:31:57 +00:00
|
|
|
int ofs=14;
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
dump("codec list mdp frame", (unsigned char *)&mdp->in.payload[0],mdp->in.payload_length);
|
2012-08-13 04:31:57 +00:00
|
|
|
|
|
|
|
for (;ofs<mdp->in.payload_length && mdp->in.payload[ofs];ofs++){
|
|
|
|
call->remote_codec_list[mdp->in.payload[ofs]]=1;
|
|
|
|
}
|
|
|
|
if (!call->initiated_call){
|
|
|
|
ofs++;
|
|
|
|
if (ofs<mdp->in.payload_length)
|
2012-08-13 06:45:10 +00:00
|
|
|
ofs+=strlcpy(call->remote.did, (char *)(mdp->in.payload+ofs), sizeof(call->remote.did))+1;
|
2012-08-13 04:31:57 +00:00
|
|
|
if (ofs<mdp->in.payload_length)
|
|
|
|
ofs+=strlcpy(call->local.did, (char *)(mdp->in.payload+ofs), sizeof(call->local.did));
|
2012-04-24 05:10:30 +00:00
|
|
|
}
|
2012-04-23 07:22:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-18 21:44:51 +00:00
|
|
|
/* At this point we know the MDP frame is addressed to the VoMP port, but
|
|
|
|
we have not inspected the contents. As these frames are wire-format, we
|
|
|
|
must pay attention to endianness. */
|
2012-04-18 23:17:59 +00:00
|
|
|
int vomp_mdp_received(overlay_mdp_frame *mdp)
|
2012-04-18 21:44:51 +00:00
|
|
|
{
|
|
|
|
if (mdp->packetTypeAndFlags&(MDP_NOCRYPT|MDP_NOSIGN))
|
|
|
|
{
|
|
|
|
/* stream-crypted audio frame */
|
2012-04-18 23:17:59 +00:00
|
|
|
return WHY("not implemented");
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* only auth-crypted frames make it this far */
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call=NULL;
|
2012-04-18 21:44:51 +00:00
|
|
|
|
|
|
|
switch(mdp->in.payload[0]) {
|
|
|
|
case 0x01: /* Ordinary VoMP state+optional audio frame */
|
|
|
|
{
|
2012-04-22 09:45:55 +00:00
|
|
|
int recvr_state=mdp->in.payload[1]>>4;
|
2012-04-21 11:06:26 +00:00
|
|
|
int sender_state=mdp->in.payload[1]&0xf;
|
2012-04-18 21:44:51 +00:00
|
|
|
unsigned int recvr_session=
|
2012-07-05 06:22:21 +00:00
|
|
|
(mdp->in.payload[8]<<16)|(mdp->in.payload[9]<<8)|mdp->in.payload[10];
|
2012-04-18 21:44:51 +00:00
|
|
|
unsigned int sender_session=
|
2012-07-05 06:22:21 +00:00
|
|
|
(mdp->in.payload[11]<<16)|(mdp->in.payload[12]<<8)|mdp->in.payload[13];
|
2012-04-19 22:32:03 +00:00
|
|
|
int sender_seq=(mdp->in.payload[4]<<8)+mdp->in.payload[5];
|
2012-04-18 21:44:51 +00:00
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// cyclic ~1 minute timer...
|
|
|
|
unsigned int sender_duration = (mdp->in.payload[6]<<8) | mdp->in.payload[7];
|
|
|
|
|
|
|
|
/* wants to create a call session.
|
|
|
|
Main aim here: replay protection. An adversary should not be able to
|
|
|
|
replay previous VoMP packets to cause any action. We do this by
|
|
|
|
allocating a new session number for each call. As an adversary may be
|
|
|
|
trying to use such replays to cause a denial of service attack we need
|
|
|
|
to be able to track multiple potential session numbers even from the
|
|
|
|
same SID. */
|
|
|
|
|
|
|
|
call=vomp_find_or_create_call(mdp->in.src.sid,mdp->in.dst.sid,
|
|
|
|
sender_session,recvr_session,
|
|
|
|
sender_state,recvr_state);
|
|
|
|
|
|
|
|
if (!call)
|
|
|
|
return WHY("Unable to find or create call");
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
if (!recvr_session && (debug & DEBUG_VOMP))
|
|
|
|
DEBUG("recvr_session==0, created call");
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state = call->local.state;
|
2012-08-21 03:24:14 +00:00
|
|
|
call->remote.sequence=sender_seq;
|
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
|
2012-07-05 06:22:21 +00:00
|
|
|
// TODO ignore state changes if sequence is stale?
|
|
|
|
// TODO ignore state changes that seem to go backwards?
|
|
|
|
|
2012-08-13 04:31:57 +00:00
|
|
|
if ((!monitor_socket_count)
|
2012-08-06 05:16:46 +00:00
|
|
|
&&(!monitor_client_interested(MONITOR_VOMP)))
|
2012-08-08 01:26:05 +00:00
|
|
|
{
|
2012-07-05 06:22:21 +00:00
|
|
|
/* No registered listener, so we cannot answer the call, so just reject
|
|
|
|
it. */
|
2012-08-08 01:26:05 +00:00
|
|
|
if (debug & DEBUG_VOMP)
|
|
|
|
DEBUGF("Rejecting call due to lack of a listener: states=%d,%d", recvr_state, sender_state);
|
2012-04-23 04:00:22 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-07-05 06:22:21 +00:00
|
|
|
/* now let the state machine progress to destroy the call */
|
|
|
|
}
|
2012-05-06 23:01:53 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
if (recvr_state < VOMP_STATE_RINGINGOUT && sender_state < VOMP_STATE_RINGINGOUT){
|
2012-07-05 06:22:21 +00:00
|
|
|
// the other party should have given us their list of supported codecs
|
|
|
|
vomp_extract_remote_codec_list(call,mdp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sender_state==VOMP_STATE_CALLENDED){
|
|
|
|
/* For whatever reason, the far end has given up on the call,
|
|
|
|
so we must also move to CALLENDED no matter what state we were in */
|
|
|
|
|
|
|
|
if (call->audio_started) vomp_call_stop_audio(call);
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Consider states: our actual state, sender state, what the sender thinks
|
|
|
|
our state is, and what we think the sender's state is. But largely it
|
|
|
|
breaks down to what we think our state is, and what they think their
|
|
|
|
state is. That leaves us with just 6X6=36 cases.
|
|
|
|
*/
|
2012-08-08 01:26:05 +00:00
|
|
|
int combined_state=recvr_state<<3 | sender_state;
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
switch(combined_state) {
|
|
|
|
case (VOMP_STATE_NOCALL<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* The remote party is in the call-prep state tryng to dial us.
|
|
|
|
We'll send them our codec list, then they can tell us to ring.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGIN<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* they are ringing us and we are ringing. Lets keep doing that. */
|
|
|
|
case (VOMP_STATE_NOCALL<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* We have have issued a session, the remote party is now indicating
|
|
|
|
that they would like us to start ringing.
|
|
|
|
So change our state to RINGINGIN. */
|
|
|
|
|
|
|
|
if (call->initiated_call)
|
|
|
|
// hey, quit it, we were trying to call you.
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-07-05 06:22:21 +00:00
|
|
|
else{
|
2012-07-31 06:15:24 +00:00
|
|
|
// Don't automatically transition to RINGIN, wait for a client to tell us when.
|
2012-07-05 06:22:21 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_CALLPREP<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_CALLPREP<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* We are getting ready to ring, and the other end has issued a session
|
|
|
|
number, (and may be calling us at the same time).
|
|
|
|
Now is the time to ring out.
|
|
|
|
However, until the remote party has acknowledged with RINGIN,
|
|
|
|
don't indicate their ringing state to the user.
|
|
|
|
*/
|
|
|
|
if (call->initiated_call){
|
|
|
|
// TODO fail the call if we can't agree on codec's
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_RINGINGOUT;
|
2012-07-05 06:22:21 +00:00
|
|
|
}else{
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_CALLENDED;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
/* We are calling them, and they have not yet answered, just wait */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_RINGINGIN:
|
|
|
|
/* we are calling them and they have acknowledged it.
|
|
|
|
Now we can play a tone to indicate they are ringing */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* Woah, we're trying to dial each other?? That must have been well timed.
|
|
|
|
Jump to INCALL and start audio */
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_INCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
// reset create time when call is established
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_INCALL<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
/* we think the call is in progress, but the far end hasn't replied yet
|
|
|
|
Just wait. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_RINGINGOUT<<3)|VOMP_STATE_INCALL:
|
|
|
|
/* They have answered, we can jump to incall as well */
|
2012-08-08 01:26:05 +00:00
|
|
|
recvr_state=VOMP_STATE_INCALL;
|
2012-07-05 06:22:21 +00:00
|
|
|
// reset create time when call is established
|
2012-07-30 07:52:38 +00:00
|
|
|
call->create_time=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
// Fall through
|
|
|
|
case (VOMP_STATE_INCALL<<3)|VOMP_STATE_INCALL:
|
|
|
|
/* play any audio that they have sent us. */
|
|
|
|
if (!call->audio_started) {
|
|
|
|
if (vomp_call_start_audio(call)) call->local.codec=VOMP_CODEC_ENGAGED;
|
|
|
|
}
|
|
|
|
vomp_process_audio(call,sender_duration,mdp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_NOCALL:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_CALLPREP:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_RINGINGOUT:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_RINGINGIN:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_INCALL:
|
|
|
|
case (VOMP_STATE_CALLENDED<<3)|VOMP_STATE_CALLENDED:
|
|
|
|
/* If we ended the call, we'll wait for the far end to reply before destroying it */
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
Any state not explicitly listed above is considered invalid and possibly stale,
|
|
|
|
the packet will be completely ignored.
|
|
|
|
*/
|
2012-08-08 01:26:05 +00:00
|
|
|
WHYF("Ignoring invalid call state %d.%d",sender_state,recvr_state);
|
2012-07-05 06:22:21 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_update_remote_state(call, sender_state);
|
|
|
|
vomp_update_local_state(call, recvr_state);
|
2012-07-30 07:52:38 +00:00
|
|
|
call->last_activity=gettime_ms();
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
// TODO if we hear a stale echo of our state should we force another outgoing packet now?
|
|
|
|
// will that always cause 2 outgoing packets?
|
|
|
|
|
|
|
|
/* send an update to the call status if required */
|
|
|
|
vomp_update(call);
|
|
|
|
|
2012-08-08 01:26:05 +00:00
|
|
|
if (sender_state==VOMP_STATE_CALLENDED
|
|
|
|
&&recvr_state==VOMP_STATE_CALLENDED)
|
2012-07-05 06:22:21 +00:00
|
|
|
return vomp_call_destroy(call);
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-04-21 21:38:33 +00:00
|
|
|
return 0;
|
2012-04-18 21:44:51 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* unsupported VoMP frame */
|
2012-04-21 21:38:33 +00:00
|
|
|
WHYF("Unsupported VoMP frame type = 0x%02x",mdp->in.payload[0]);
|
2012-04-18 21:44:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-04-18 23:17:59 +00:00
|
|
|
return WHY("Malformed VoMP MDP packet?");
|
2012-04-18 21:44:51 +00:00
|
|
|
}
|
2012-04-20 06:11:13 +00:00
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
static const char *vomp_describe_codec(int c)
|
2012-04-23 04:25:17 +00:00
|
|
|
{
|
|
|
|
switch(c) {
|
|
|
|
case VOMP_CODEC_NONE: return "none";
|
|
|
|
case VOMP_CODEC_CODEC2_2400: return "CODEC2@1400";
|
|
|
|
case VOMP_CODEC_CODEC2_1400: return "CODEC2@2400";
|
|
|
|
case VOMP_CODEC_GSMHALF: return "GSM-half-rate";
|
|
|
|
case VOMP_CODEC_GSMFULL: return "GSM-full-rate";
|
|
|
|
case VOMP_CODEC_16SIGNED: return "16bit-raw";
|
|
|
|
case VOMP_CODEC_8ULAW: return "8bit-uLaw";
|
|
|
|
case VOMP_CODEC_8ALAW: return "8bit-aLaw";
|
2012-05-06 12:26:40 +00:00
|
|
|
case VOMP_CODEC_PCM: return "PCM@8KHz";
|
2012-04-23 04:25:17 +00:00
|
|
|
case VOMP_CODEC_DTMF: return "DTMF";
|
|
|
|
case VOMP_CODEC_ENGAGED: return "Engaged-tone";
|
|
|
|
case VOMP_CODEC_ONHOLD: return "On-Hold";
|
|
|
|
case VOMP_CODEC_CALLERID: return "CallerID";
|
|
|
|
}
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
2012-04-24 05:57:20 +00:00
|
|
|
int vomp_sample_size(int c)
|
|
|
|
{
|
|
|
|
switch(c) {
|
|
|
|
case VOMP_CODEC_NONE: return 0;
|
|
|
|
case VOMP_CODEC_CODEC2_2400: return 7; /* actually 2550bps, 51 bits per 20ms,
|
|
|
|
but using whole byte here, so 2800bps */
|
|
|
|
case VOMP_CODEC_CODEC2_1400: return 7; /* per 40ms */
|
|
|
|
case VOMP_CODEC_GSMHALF: return 14; /* check. 5.6kbits */
|
|
|
|
case VOMP_CODEC_GSMFULL: return 33; /* padded to 13.2kbit/sec */
|
|
|
|
case VOMP_CODEC_16SIGNED: return 320; /* 8000x2bytes*0.02sec */
|
|
|
|
case VOMP_CODEC_8ULAW: return 160;
|
|
|
|
case VOMP_CODEC_8ALAW: return 160;
|
2012-05-06 11:42:31 +00:00
|
|
|
case VOMP_CODEC_PCM: return 320;
|
2012-04-24 05:57:20 +00:00
|
|
|
case VOMP_CODEC_DTMF: return 1;
|
|
|
|
case VOMP_CODEC_ENGAGED: return 0;
|
|
|
|
case VOMP_CODEC_ONHOLD: return 0;
|
|
|
|
case VOMP_CODEC_CALLERID: return 32;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-24 10:56:16 +00:00
|
|
|
int vomp_codec_timespan(int c)
|
|
|
|
{
|
|
|
|
switch(c) {
|
|
|
|
case VOMP_CODEC_NONE: return 1;
|
|
|
|
case VOMP_CODEC_CODEC2_2400: return 20;
|
|
|
|
case VOMP_CODEC_CODEC2_1400: return 40;
|
|
|
|
case VOMP_CODEC_GSMHALF: return 20;
|
|
|
|
case VOMP_CODEC_GSMFULL: return 20;
|
|
|
|
case VOMP_CODEC_16SIGNED: return 20;
|
|
|
|
case VOMP_CODEC_8ULAW: return 20;
|
|
|
|
case VOMP_CODEC_8ALAW: return 20;
|
2012-05-06 11:42:31 +00:00
|
|
|
case VOMP_CODEC_PCM: return 20;
|
2012-04-24 20:08:45 +00:00
|
|
|
case VOMP_CODEC_DTMF: return 80;
|
2012-04-24 10:56:16 +00:00
|
|
|
case VOMP_CODEC_ENGAGED: return 20;
|
|
|
|
case VOMP_CODEC_ONHOLD: return 20;
|
|
|
|
case VOMP_CODEC_CALLERID: return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-24 01:34:29 +00:00
|
|
|
int vomp_parse_dtmf_digit(char c)
|
|
|
|
{
|
|
|
|
if (c>='0'&&c<='9') return c-0x30;
|
|
|
|
switch (c) {
|
|
|
|
case 'a': case 'A': return 0xa;
|
|
|
|
case 'b': case 'B': return 0xb;
|
|
|
|
case 'c': case 'C': return 0xc;
|
|
|
|
case 'd': case 'D': return 0xd;
|
|
|
|
case '*': return 0xe;
|
|
|
|
case '#': return 0xf;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char vomp_dtmf_digit_to_char(int digit)
|
|
|
|
{
|
|
|
|
if (digit<0) return '?';
|
|
|
|
if (digit<10) return '0'+digit;
|
|
|
|
if (digit<0xe) return 'A'+digit-0xa;
|
|
|
|
if (digit==0xe) return '*';
|
|
|
|
if (digit==0xf) return '#';
|
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:59:37 +00:00
|
|
|
static void vomp_process_tick(struct sched_ent *alarm)
|
|
|
|
{
|
2012-07-03 05:43:39 +00:00
|
|
|
char msg[32];
|
|
|
|
int len;
|
2012-08-09 02:44:32 +00:00
|
|
|
time_ms_t now = gettime_ms();
|
2012-07-03 05:43:39 +00:00
|
|
|
|
2012-08-06 05:16:46 +00:00
|
|
|
struct vomp_call_state *call = (struct vomp_call_state *)alarm;
|
2012-07-03 05:43:39 +00:00
|
|
|
|
2012-08-09 02:22:44 +00:00
|
|
|
/* See if any calls need to be expired.
|
|
|
|
Allow VOMP_CALL_DIAL_TIMEOUT ms for the other party to ring / request ringing
|
|
|
|
Allow VOMP_CALL_RING_TIMEOUT ms for the ringing party to answer
|
|
|
|
Allow VOMP_CALL_NETWORK_TIMEOUT ms between received packets
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((call->remote.state < VOMP_STATE_RINGINGOUT && call->create_time + VOMP_CALL_DIAL_TIMEOUT < now) ||
|
|
|
|
(call->local.state < VOMP_STATE_INCALL && call->create_time + VOMP_CALL_RING_TIMEOUT < now) ||
|
|
|
|
(call->last_activity+VOMP_CALL_NETWORK_TIMEOUT<now) ){
|
2012-08-08 01:26:05 +00:00
|
|
|
vomp_call_destroy(call);
|
|
|
|
return;
|
2012-07-03 05:43:39 +00:00
|
|
|
}
|
2012-07-05 06:22:21 +00:00
|
|
|
|
|
|
|
/* update everyone if the state has changed */
|
|
|
|
vomp_update(call);
|
|
|
|
/* force a packet to the other party. We are still here */
|
|
|
|
vomp_send_status_remote(call);
|
|
|
|
|
|
|
|
/* tell local monitor clients the call is still alive */
|
|
|
|
len = snprintf(msg,sizeof(msg) -1,"\nKEEPALIVE:%06x\n", call->local.session);
|
|
|
|
monitor_tell_clients(msg, len, MONITOR_VOMP);
|
|
|
|
|
2012-07-30 07:52:38 +00:00
|
|
|
alarm->alarm = gettime_ms() + VOMP_CALL_STATUS_INTERVAL;
|
2012-07-12 00:45:16 +00:00
|
|
|
alarm->deadline = alarm->alarm + VOMP_CALL_STATUS_INTERVAL/2;
|
2012-07-02 03:49:54 +00:00
|
|
|
schedule(alarm);
|
2012-04-21 11:51:26 +00:00
|
|
|
}
|