mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.5 KiB
88 lines
2.5 KiB
/**
|
|
* Copyright (C) 2009 Daniel-Constantin Mierla (asipto.com)
|
|
*
|
|
* This file is part of kamailio, a free SIP server.
|
|
*
|
|
* Kamailio 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
|
|
*
|
|
* Kamailio 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
|
|
*/
|
|
/*!
|
|
* \file
|
|
* \brief Faked message handling
|
|
* \ingroup libkcore
|
|
* Module: \ref libkcore
|
|
*/
|
|
|
|
#include "dprint.h"
|
|
#include "globals.h"
|
|
#include "dset.h"
|
|
|
|
#include "fmsg.h"
|
|
|
|
#define FAKED_SIP_MSG "OPTIONS sip:you@kamailio.org SIP/2.0\r\nVia: SIP/2.0/UDP 127.0.0.1\r\nFrom: <you@kamailio.org>;tag=123\r\nTo: <you@kamailio.org>\r\nCall-ID: 123\r\nCSeq: 1 OPTIONS\r\nContent-Length: 0\r\n\r\n"
|
|
#define FAKED_SIP_MSG_LEN (sizeof(FAKED_SIP_MSG)-1)
|
|
static char _faked_sip_buf[FAKED_SIP_MSG_LEN+1];
|
|
static struct sip_msg _faked_msg;
|
|
static unsigned int _faked_msg_no = 0;
|
|
|
|
int faked_msg_init(void)
|
|
{
|
|
if(_faked_msg_no>0)
|
|
return 0;
|
|
/* init faked sip msg */
|
|
memcpy(_faked_sip_buf, FAKED_SIP_MSG, FAKED_SIP_MSG_LEN);
|
|
_faked_sip_buf[FAKED_SIP_MSG_LEN] = '\0';
|
|
|
|
memset(&_faked_msg, 0, sizeof(struct sip_msg));
|
|
|
|
_faked_msg.buf=_faked_sip_buf;
|
|
_faked_msg.len=FAKED_SIP_MSG_LEN;
|
|
|
|
_faked_msg.set_global_address=default_global_address;
|
|
_faked_msg.set_global_port=default_global_port;
|
|
|
|
if (parse_msg(_faked_msg.buf, _faked_msg.len, &_faked_msg)!=0)
|
|
{
|
|
LM_ERR("parse_msg failed\n");
|
|
return -1;
|
|
}
|
|
|
|
_faked_msg.rcv.proto = PROTO_UDP;
|
|
_faked_msg.rcv.src_port = 5060;
|
|
_faked_msg.rcv.src_ip.u.addr32[0] = 0x7f000001;
|
|
_faked_msg.rcv.src_ip.af = AF_INET;
|
|
_faked_msg.rcv.src_ip.len = 4;
|
|
_faked_msg.rcv.dst_port = 5060;
|
|
_faked_msg.rcv.dst_ip.u.addr32[0] = 0x7f000001;
|
|
_faked_msg.rcv.dst_ip.af = AF_INET;
|
|
_faked_msg.rcv.dst_ip.len = 4;
|
|
|
|
return 0;
|
|
}
|
|
|
|
sip_msg_t* faked_msg_next(void)
|
|
{
|
|
_faked_msg.id = 1 + _faked_msg_no++;
|
|
_faked_msg.pid = my_pid();
|
|
memset(&_faked_msg.tval, 0, sizeof(struct timeval));
|
|
clear_branches();
|
|
return &_faked_msg;
|
|
}
|
|
|
|
sip_msg_t* faked_msg_get_next(void)
|
|
{
|
|
faked_msg_init();
|
|
return faked_msg_next();
|
|
}
|