Module: sip-router
Branch: kamailio_3.0
Commit: 062131954268d7b43bfd2544f93f46fb134e630c
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0621319…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Thu Oct 29 11:28:20 2009 +0100
core: drop reply in K compatible style
- drop reply in default onreply_route when using 'drop'
---
receive.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/receive.c b/receive.c
index b6e6f6e..6ff60ee 100644
--- a/receive.c
+++ b/receive.c
@@ -91,6 +91,7 @@ unsigned int inc_msg_no(void)
int receive_msg(char* buf, unsigned int len, struct receive_info* rcv_info)
{
struct sip_msg* msg;
+ struct run_act_ctx ctx;
int ret;
#ifdef STATS
int skipped = 1;
@@ -236,12 +237,15 @@ int receive_msg(char* buf, unsigned int len, struct receive_info*
rcv_info)
/* exec the onreply routing script */
if (onreply_rt.rlist[DEFAULT_RT]){
set_route_type(ONREPLY_ROUTE);
- ret=run_top_route(onreply_rt.rlist[DEFAULT_RT], msg, 0);
+ ret=run_top_route(onreply_rt.rlist[DEFAULT_RT], msg, &ctx);
+#if 0
if (ret<0){
LOG(L_WARN, "WARNING: receive_msg: "
"error while trying onreply script\n");
goto error_rpl;
- }else if (ret==0){
+ }else
+#endif
+ if (ctx.run_flags&DROP_R_F){
sr_event_exec(SREV_CORE_STATS, (void*)4);
goto skip_send_reply; /* drop the message, no error */
}
@@ -274,11 +278,13 @@ end:
if (skipped) STATS_RX_DROPS;
#endif
return 0;
+#if 0
error_rpl:
/* execute post reply-script callbacks */
exec_post_script_cb(msg, ONREPLY_CB_TYPE);
reset_avps();
goto error02;
+#endif
error_req:
DBG("receive_msg: error:...\n");
/* execute post request-script callbacks */