Hi!
Is it possible to set MAX_BRANCH > 30?
The tm module will give an error if I try higher values: tm.c: if (MAX_BRANCHES+1>31) { LOG(L_CRIT, "Too many max UACs for UAC branch_bm_t bitmap: %d\n",
Where does the "31" come from? Is it safe to increase this value?
regards, Klaus
Hi Klaus,
This limitation is because, internally, TM uses some branch bitmaps on int variables -> 8*sizeof(int)=32. SO, TM is not able to track more than 30 additionally branches (branch 0 is consider to be the default one, when no forking is done). So, please don't change this, otherwise TM will be broken.
Bogdan
Klaus Darilion wrote:
Hi!
Is it possible to set MAX_BRANCH > 30?
The tm module will give an error if I try higher values: tm.c: if (MAX_BRANCHES+1>31) { LOG(L_CRIT, "Too many max UACs for UAC branch_bm_t bitmap: %d\n",
Where does the "31" come from? Is it safe to increase this value?
regards, Klaus
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers