caf80ae6 |
/*
* $Id$
*
* destination set
|
7dd0b342 |
*
* Copyright (C) 2001-2003 Fhg Fokus
*
* This file is part of ser, a free SIP server.
*
* ser 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
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* ser 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
|
caf80ae6 |
*/
|
7dd0b342 |
|
caf80ae6 |
#include <string.h>
#include "dprint.h"
#include "config.h"
#include "parser/parser_f.h"
#include "parser/msg_parser.h"
#include "ut.h"
#include "hash_func.h"
#include "dset.h"
|
30449150 |
#include "error.h"
|
caf80ae6 |
/* where we store URIs of additional transaction branches
(-1 because of the default branch, #0)
*/
static struct branch branches[ MAX_BRANCHES - 1 ];
/* how many of them we have */
static unsigned int nr_branches=0;
/* branch iterator */
static int branch_iterator=0;
void init_branch_iterator(void)
{
branch_iterator=0;
}
char *next_branch( int *len )
{
unsigned int i;
i=branch_iterator;
if (i<nr_branches) {
branch_iterator++;
*len=branches[i].len;
return branches[i].uri;
} else {
*len=0;
return 0;
}
}
void clear_branches()
{
nr_branches=0;
}
/* add a new branch to current transaction */
int append_branch( struct sip_msg *msg, char *uri, int uri_len )
{
/* if we have already set up the maximum number
of branches, don't try new ones */
if (nr_branches==MAX_BRANCHES-1) {
LOG(L_ERR, "ERROR: append_branch: max nr of branches exceeded\n");
|
30449150 |
ser_error=E_TOO_MANY_BRANCHES;
|
caf80ae6 |
return -1;
}
if (uri_len>MAX_URI_SIZE-1) {
LOG(L_ERR, "ERROR: append_branch: too long uri: %.*s\n",
uri_len, uri );
return -1;
}
/* if not parameterized, take current uri */
if (uri==0) {
if (msg->new_uri.s) {
uri=msg->new_uri.s;
uri_len=msg->new_uri.len;
} else {
uri=msg->first_line.u.request.uri.s;
uri_len=msg->first_line.u.request.uri.len;
}
}
memcpy( branches[nr_branches].uri, uri, uri_len );
/* be safe -- add zero termination */
branches[nr_branches].uri[uri_len]=0;
branches[nr_branches].len=uri_len;
nr_branches++;
return 1;
}
|
2a78db5c |
|
96bff2ed |
char *print_dset( struct sip_msg *msg, int *len )
|
2a78db5c |
{
int cnt;
str uri;
char *p;
int i;
static char dset[MAX_REDIRECTION_LEN];
if (msg->new_uri.s) {
cnt=1;
*len=msg->new_uri.len;
} else {
cnt=0;
*len=0;
}
init_branch_iterator();
while ((uri.s=next_branch(&uri.len))) {
cnt++;
*len+=uri.len;
}
if (cnt==0) return 0;
*len+=CONTACT_LEN+CRLF_LEN+(cnt-1)*CONTACT_DELIM_LEN;
if (*len+1>MAX_REDIRECTION_LEN) {
LOG(L_ERR, "ERROR: redirection buffer length exceed\n");
return 0;
}
memcpy(dset, CONTACT, CONTACT_LEN );
p=dset+CONTACT_LEN;
if (msg->new_uri.s) {
memcpy(p, msg->new_uri.s, msg->new_uri.len);
p+=msg->new_uri.len;
i=1;
} else i=0;
init_branch_iterator();
while ((uri.s=next_branch(&uri.len))) {
if (i) {
memcpy(p, CONTACT_DELIM, CONTACT_DELIM_LEN );
p+=2;
}
memcpy(p, uri.s, uri.len);
p+=uri.len;
i++;
}
memcpy(p, CRLF " ", CRLF_LEN+1);
return dset;
}
|