<div dir="ltr"><div>Hi folks,</div><div><br></div><div>I have a question related with the limited number of branches being 12 in config.h</div><div><span class="" style="white-space:pre">   </span>#define MAX_BRANCHES            12      /*!< maximum number of branches per transaction */</div><div><br></div><div>I am trying to implement a Call Group that consists in trying each member of the group (that can result in a parallel forking when lookup() is used) in sequence (similar to serial forking).</div><div><br></div><div>Currently I have written code that is similar to the one described here:</div><div><br></div><div>                <a href="http://www.kamailio.org/dokuwiki/dokuphp/tutorials:avpops#serial_forking">http://www.kamailio.org/dokuwiki/dokuphp/tutorials:avpops#serial_forking</a></div><div><br></div><div>The only difference is that for each member I call lookup() and then in the failure_route(), I pull the next member from the stack and call lookup() again.  The code works fine when used for groups with less than 12 members.  However, call groups with 12 or more members fails as I can never reach remaining extensions once MAX_BRANCHES limit is reached.</div><div><br></div><div>I've tried another approach using the functions described here:</div><div><br></div><div>                <a href="http://kamailio.org/docs/modules/4.1.x/modules/tm.html#tm.serial_forking">http://kamailio.org/docs/modules/4.1.x/modules/tm.html#tm.serial_forking</a></div><div><br></div><div>but it too uses a new branch for every group member until the 12 limit is reached out.</div><div><br></div><div>I also tried to use the functions "remove_branch(index)" and "clear_branches()" (both of which are poorly documented.  In fact the only reference I ever found for these functions was here: <a href="http://www.kamailio.org/wiki/features/new-in-3.2.x#functions">http://www.kamailio.org/wiki/features/new-in-3.2.x#functions</a>).  Unfortunately, I wasn't able to prevent the MAX_BRANCHES limit from being reached.</div><div><br></div><div>Ultimately, my goal is to have a limitless Call Group.  Do you have any suggestions? (other than increasing the hard coded MAX_BRANCHES limit)</div><div><br></div><div>Thank you,</div><div>Joao Arruda</div></div>