<div dir="ltr">I am using opensips 1.11 but i have seen wired issue, How i can check auth before process INVITE packet? <div><br></div><div>I have following code, I have seen if i send only INVITE packet using SIPP it is processing that call, I want it check AUTH before processing INVITE packet how can we do that?</div><div><br></div><div><div># To FreeSWITCH</div><div>    if (is_method("INVITE")) {</div><div>    if  ( uri=~"^sip:[1-9][0-9]{10,15}@.*") {</div><div>        xlog("call with X-customer: $Au  ===> Freeswitch\n");</div><div>        append_hf("X-customer: $Au\r\n");</div><div>        append_hf("X-SRIPP: $si:$sp\r\n");</div><div>        route("to_dispatcher");</div><div>        exit;</div><div>        };</div><div>    }</div></div><div><br></div></div>