Hi,
Given:
flags PROXY_MEDIA_SET : 10, SIPPING : 11, DUMMY2 : 12
And:
request_route { ...
route(XYZ); }
route[XYZ] { setflag(PROXY_MEDIA_SET);
t_on_branch("BRANCH_ROUTE");
if(!t_relay()) sl_reply_error(); }
branch_route[BRANCH_ROUTE] { if(isflagset(PROXY_MEDIA_SET)) { ... }
... }
Is PROXY_MEDIA_SET meant to be visible inside the branch_route? Because it doesn't seem to be.
Thanks!
-- Alex