Open Sips
Table of Contents

http://kamailio.org/dokuwiki/doku.php/transformations:1.4.x

if(is_method("REGISTER") && is_present_hf("Expires") && $(hdr(Expires){s.int})==0)
    xlog("This is an un-registration\n");

http://wiki.freeswitch.org/wiki/SBC_Setup

# LOOKUP ROUTE TABLE WHEN ASKED BY HEADER: X-ROUTE:LOOKUP
        if (is_method("INVITE") && $hdr(X-ROUTE)=="LOOKUP"){
                if(!cr_route("default", "default", "$rU", "$rU", "call_id","$avp(s:route_desc)")){
                     #xlog("ROUTING FAILED: no route found for $rU");
                     sl_send_reply("604", "Unable to route this call");
                     exit;
                } else {
                     #xlog("LOOKUP FOUND: $rd $avp(s:route_desc)");
             avp_pushto("$ru/username", "$avp(s:route_desc)");                   
                     sl_send_reply("302", "$rd");
                     exit;
                }
        }
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License