@stefan-mititelu-idt commented on this pull request.


In src/modules/rtpengine/rtpengine.c:

> @@ -2176,6 +2184,11 @@ static int mod_init(void)
 		}
 	}
 
+	/* Enable ping timer if interval is positive */
+	if(rtpengine_ping_interval > 0) {
+		register_timer(rtpengine_ping_check_timer, 0, rtpengine_ping_interval);

question: after this timer callback is registered, when will it trigger first time? Is it right away, or after rtpengine_ping_interval seconds?


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <kamailio/kamailio/pull/4016/review/2421126548@github.com>