mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 05:38:14 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@1 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
436 lines
8.7 KiB
C
436 lines
8.7 KiB
C
/*
|
|
eXosip - This is the eXtended osip library.
|
|
Copyright (C) 2002, 2003 Aymeric MOIZARD - jack@atosc.org
|
|
|
|
eXosip 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.
|
|
|
|
eXosip 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
|
|
#ifdef ENABLE_MPATROL
|
|
#include <mpatrol.h>
|
|
#endif
|
|
|
|
|
|
#include "eXosip2.h"
|
|
|
|
extern eXosip_t eXosip;
|
|
|
|
|
|
/* some methods to extract transaction information from a eXosip_call_t */
|
|
|
|
int
|
|
eXosip_remove_transaction_from_call(osip_transaction_t *tr, eXosip_call_t *jc)
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
osip_transaction_t *out_tr;
|
|
eXosip_dialog_t *jd;
|
|
int pos=0;
|
|
|
|
if (jc->c_inc_tr==tr)
|
|
{
|
|
jc->c_inc_tr = NULL; /* can be NULL */
|
|
return 0;
|
|
}
|
|
|
|
for (jd=jc->c_dialogs;jd!=NULL;jd=jd->next)
|
|
{
|
|
pos=0;
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (inc_tr==tr)
|
|
{
|
|
osip_list_remove(jd->d_inc_trs, pos);
|
|
return 0;
|
|
}
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
if (jc->c_out_tr==tr)
|
|
{
|
|
jc->c_out_tr = NULL; /* can be NULL */
|
|
return 0;
|
|
}
|
|
|
|
for (jd=jc->c_dialogs;jd!=NULL;jd=jd->next)
|
|
{
|
|
pos=0;
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (out_tr==tr)
|
|
{
|
|
osip_list_remove(jd->d_out_trs, pos);
|
|
return 0;
|
|
}
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
OSIP_TRACE(osip_trace(__FILE__,__LINE__,OSIP_INFO1,NULL,
|
|
"eXosip: No information.\n"));
|
|
return -1;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_options(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
osip_transaction_t *out_tr;
|
|
inc_tr = eXosip_find_last_inc_options(jc, jd);
|
|
out_tr = eXosip_find_last_out_options(jc, jd);
|
|
if (inc_tr==NULL)
|
|
return out_tr;
|
|
if (out_tr==NULL)
|
|
return inc_tr;
|
|
|
|
if (inc_tr->birth_time>out_tr->birth_time)
|
|
return inc_tr;
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_options(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "OPTIONS"))
|
|
break;
|
|
else inc_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
else
|
|
inc_tr = NULL;
|
|
|
|
if (inc_tr==NULL)
|
|
return jc->c_inc_options_tr; /* can be NULL */
|
|
|
|
return inc_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_options(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd==NULL && jc==NULL) return NULL;
|
|
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "OPTIONS"))
|
|
break;
|
|
else out_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
if (out_tr==NULL)
|
|
return jc->c_out_options_tr; /* can be NULL */
|
|
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_info(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
osip_transaction_t *out_tr;
|
|
inc_tr = eXosip_find_last_inc_info(jc, jd);
|
|
out_tr = eXosip_find_last_out_info(jc, jd);
|
|
if (inc_tr==NULL)
|
|
return out_tr;
|
|
if (out_tr==NULL)
|
|
return inc_tr;
|
|
|
|
if (inc_tr->birth_time>out_tr->birth_time)
|
|
return inc_tr;
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_info(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "INFO"))
|
|
break;
|
|
else inc_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
else
|
|
inc_tr = NULL;
|
|
|
|
return inc_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_info(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd==NULL && jc==NULL) return NULL;
|
|
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "INFO"))
|
|
break;
|
|
else out_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_refer(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
osip_transaction_t *out_tr;
|
|
inc_tr = eXosip_find_last_inc_refer(jc, jd);
|
|
out_tr = eXosip_find_last_out_refer(jc, jd);
|
|
if (inc_tr==NULL)
|
|
return out_tr;
|
|
if (out_tr==NULL)
|
|
return inc_tr;
|
|
|
|
if (inc_tr->birth_time>out_tr->birth_time)
|
|
return inc_tr;
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_invite(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
osip_transaction_t *out_tr;
|
|
inc_tr = eXosip_find_last_inc_invite(jc, jd);
|
|
out_tr = eXosip_find_last_out_invite(jc, jd);
|
|
if (inc_tr==NULL)
|
|
return out_tr;
|
|
if (out_tr==NULL)
|
|
return inc_tr;
|
|
|
|
if (inc_tr->birth_time>out_tr->birth_time)
|
|
return inc_tr;
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_invite(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "INVITE"))
|
|
break;
|
|
else inc_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
else
|
|
inc_tr = NULL;
|
|
|
|
if (inc_tr==NULL)
|
|
return jc->c_inc_tr; /* can be NULL */
|
|
|
|
return inc_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_invite(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd==NULL && jc==NULL) return NULL;
|
|
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "INVITE"))
|
|
break;
|
|
else out_tr = NULL;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
if (out_tr==NULL)
|
|
return jc->c_out_tr; /* can be NULL */
|
|
|
|
return out_tr;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_bye(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "BYE"))
|
|
return inc_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_bye(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "BYE"))
|
|
return out_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_refer(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "REFER"))
|
|
return inc_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_refer(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "REFER"))
|
|
return out_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_inc_notify_for_refer(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *inc_tr;
|
|
int pos;
|
|
inc_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_inc_trs, pos))
|
|
{
|
|
inc_tr = osip_list_get(jd->d_inc_trs, pos);
|
|
if (0==strcmp(inc_tr->cseq->method, "NOTIFY"))
|
|
return inc_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
osip_transaction_t *
|
|
eXosip_find_last_out_notify_for_refer(eXosip_call_t *jc, eXosip_dialog_t *jd )
|
|
{
|
|
osip_transaction_t *out_tr;
|
|
int pos;
|
|
out_tr = NULL;
|
|
pos=0;
|
|
if (jd!=NULL)
|
|
{
|
|
while (!osip_list_eol(jd->d_out_trs, pos))
|
|
{
|
|
out_tr = osip_list_get(jd->d_out_trs, pos);
|
|
if (0==strcmp(out_tr->cseq->method, "NOTIFY"))
|
|
return out_tr;
|
|
pos++;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|