@xkaraman commented on this pull request.
@@ -3549,6 +3606,10 @@ static int rtpp_test(struct rtpp_node *node, int isdisabled, int force)
return 1; } if(force == 0) { + /* If ping_interval is set, the timer will ping and test + the rtps. No need to do something during routing */ + if(rtpengine_ping_interval > 0) + return 1;
I think you are right, since this function has a bit different semantics that `rtpp_test_ping()`.
This function should return whether the node `isdisabled` or not (not if it's reachable since other checks are in play, like pings or already enabled).
I have made some modification to the check of `ping_interval` and now we return whatever status we already were if ping timer is enabled.
Does this make more sense?