Browse Source

- remove the T_NOISY_CTIMER_FLAG flag

git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3914 689a6050-402a-0410-94f2-e92a70836424
Bogdan-Andrei Iancu 17 years ago
parent
commit
a475803932
3 changed files with 0 additions and 16 deletions
  1. 0 5
      modules_k/acc/acc_logic.c
  2. 0 6
      modules_k/osp/tm.c
  3. 0 5
      modules_k/siptrace/siptrace.c

+ 0 - 5
modules_k/acc/acc_logic.c

@@ -235,11 +235,6 @@ void acc_onreq( struct cell* t, int type, struct tmcb_params *ps )
 			LM_ERR("cannot register additional callbacks\n");
 			return;
 		}
-		/* also, if that is INVITE, disallow silent t-drop */
-		if ( is_invite ) {
-			LM_DBG("noisy_timer set for accounting\n");
-			t->flags |= T_NOISY_CTIMER_FLAG;
-		}
 		/* if required, determine request direction */
 		if( detect_direction && !rrb.is_direction(ps->req,RR_FLOW_UPSTREAM) ) {
 			LM_DBG("detected an UPSTREAM req -> flaging it\n");

+ 0 - 6
modules_k/osp/tm.c

@@ -97,12 +97,6 @@ static void ospOnReq(
        LM_ERR("TM callbacks are required for reporting call setup usage\n");
         return;
     }
-
-    /* Also, if that is INVITE, disallow silent t-drop */
-    if (ps->req->REQ_METHOD == METHOD_INVITE) {
-        LM_DBG("noisy_timer set for accounting\n");
-        t->flags |= T_NOISY_CTIMER_FLAG;
-    }
 }
 
 /*

+ 0 - 5
modules_k/siptrace/siptrace.c

@@ -593,11 +593,6 @@ static void trace_onreq_in(struct cell* t, int type, struct tmcb_params *ps)
 		return;
 	}
 
-	if (msg->REQ_METHOD==METHOD_INVITE)
-	{
-		LM_DBG("noisy_timer set for tracing\n");
-		t->flags |= T_NOISY_CTIMER_FLAG;
-	}
 	if(tmb.register_tmcb( 0, t, TMCB_REQUEST_BUILT, trace_onreq_out, 0) <=0)
 	{
 		LM_ERR("can't register trace_onreq_out\n");