Module: sip-router
Branch: master
Commit: 6c829c1794fb79fbce213238e88346522f584fcf
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6c829c1…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Jan 18 10:19:18 2012 +0100
rtimer: use faked msg from lib to get a src IP address
- reported by Uri Shacked
---
modules_k/rtimer/Makefile | 3 ++
modules_k/rtimer/rtimer_mod.c | 44 +++++++++++++---------------------------
2 files changed, 17 insertions(+), 30 deletions(-)
diff --git a/modules_k/rtimer/Makefile b/modules_k/rtimer/Makefile
index 8a0b3be..bb3d573 100644
--- a/modules_k/rtimer/Makefile
+++ b/modules_k/rtimer/Makefile
@@ -12,4 +12,7 @@ LIBS=
DEFS+=-DOPENSER_MOD_INTERFACE
+SERLIBPATH=../../lib
+SER_LIBS+=$(SERLIBPATH)/kcore/kcore
+
include ../../Makefile.modules
diff --git a/modules_k/rtimer/rtimer_mod.c b/modules_k/rtimer/rtimer_mod.c
index 97719d7..03a002d 100644
--- a/modules_k/rtimer/rtimer_mod.c
+++ b/modules_k/rtimer/rtimer_mod.c
@@ -40,6 +40,7 @@
#include "../../timer_proc.h"
#include "../../script_cb.h"
#include "../../parser/parse_param.h"
+#include "../../lib/kcore/faked_msg.h"
MODULE_VERSION
@@ -96,11 +97,6 @@ struct module_exports exports= {
};
-#define STM_SIP_MSG "OPTIONS sip:you@kamailio.org SIP/2.0\r\nVia: SIP/2.0/UDP
127.0.0.1\r\nFrom: <you(a)kamailio.org>;tag=123\r\nTo\r\nTo:
<you(a)kamailio.org>\r\nCall-IDall-ID: 123\r\nCSeq: 1 OPTIONS\r\nContent-Length:
0\r\n\r\n"
-#define STM_SIP_MSG_LEN (sizeof(STM_SIP_MSG)-1)
-static char _stm_sip_buf[STM_SIP_MSG_LEN+1];
-static struct sip_msg _stm_msg;
-static unsigned int _stm_msg_no = 1;
/**
* init module function
*/
@@ -110,6 +106,14 @@ static int mod_init(void)
if(_stm_list==NULL)
return 0;
+ /* init faked sip msg */
+ if(faked_msg_init()<0)
+ {
+ LM_ERR("failed to init timer local sip msg\n");
+ return -1;
+ }
+
+ /* register timers */
it = _stm_list;
while(it)
{
@@ -126,24 +130,6 @@ static int mod_init(void)
it = it->next;
}
- /* init faked sip msg */
- memcpy(_stm_sip_buf, STM_SIP_MSG, STM_SIP_MSG_LEN);
- _stm_sip_buf[STM_SIP_MSG_LEN] = '\0';
-
- memset(&_stm_msg, 0, sizeof(struct sip_msg));
-
- _stm_msg.buf=_stm_sip_buf;
- _stm_msg.len=STM_SIP_MSG_LEN;
-
- _stm_msg.set_global_address=default_global_address;
- _stm_msg.set_global_port=default_global_port;
-
- if (parse_msg(_stm_msg.buf, _stm_msg.len, &_stm_msg)!=0)
- {
- LM_ERR("parse_msg failed\n");
- return -1;
- }
-
return 0;
}
@@ -188,7 +174,7 @@ void stm_timer_exec(unsigned int ticks, void *param)
{
stm_timer_t *it;
stm_route_t *rt;
-
+ sip_msg_t *fmsg;
if(param==NULL)
return;
@@ -198,14 +184,12 @@ void stm_timer_exec(unsigned int ticks, void *param)
for(rt=it->rt; rt; rt=rt->next)
{
- /* update local parameters */
- _stm_msg.id=_stm_msg_no++;
- clear_branches();
- if (exec_pre_script_cb(&_stm_msg, REQUEST_CB_TYPE)==0 )
+ fmsg = faked_msg_next();
+ if (exec_pre_script_cb(fmsg, REQUEST_CB_TYPE)==0 )
continue; /* drop the request */
set_route_type(REQUEST_ROUTE);
- run_top_route(main_rt.rlist[rt->route], &_stm_msg, 0);
- exec_post_script_cb(&_stm_msg, REQUEST_CB_TYPE);
+ run_top_route(main_rt.rlist[rt->route], fmsg, 0);
+ exec_post_script_cb(fmsg, REQUEST_CB_TYPE);
}
}