[sr-dev] git:master: tmx: precheck_trans - new parameter to enable/ disable pre-transaction check

Daniel-Constantin Mierla miconda at gmail.com
Mon Aug 18 22:16:43 CEST 2014


Module: sip-router
Branch: master
Commit: 2ceae3188beb73da7d5975e7abf232226dd12063
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2ceae3188beb73da7d5975e7abf232226dd12063

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Mon Aug 18 22:07:58 2014 +0200

tmx: precheck_trans - new parameter to enable/disable pre-transaction check

- enable/disable usage of t_precheck_trans() - don't init internal
  structures

---

 modules/tmx/tmx_mod.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/tmx/tmx_mod.c b/modules/tmx/tmx_mod.c
index b645b0d..3af01f5 100644
--- a/modules/tmx/tmx_mod.c
+++ b/modules/tmx/tmx_mod.c
@@ -77,7 +77,7 @@ static int tmx_cfg_callback(sip_msg_t *msg, unsigned int flags, void *cbp);
 
 static int bind_tmx(tmx_api_t* api);
 
-static int _tmx_pretran_check = 1;
+static int _tmx_precheck_trans = 1;
 
 /* statistic variables */
 stat_var *tm_rcv_rpls;
@@ -197,7 +197,7 @@ static cmd_export_t cmds[]={
 };
 
 static param_export_t params[]={
-	{"pretran_check", PARAM_INT, &_tmx_pretran_check },
+	{"precheck_trans", PARAM_INT, &_tmx_precheck_trans},
 	{0,0,0}
 };
 
@@ -263,7 +263,7 @@ static int child_init(int rank)
 {
 	LM_DBG("rank is (%d)\n", rank);
 	if (rank==PROC_INIT) {
-		if(_tmx_pretran_check!=0)
+		if(_tmx_precheck_trans!=0)
 			return tmx_init_pretran_table();
 	}
 	return 0;




More information about the sr-dev mailing list