Alguien sabe porqué el strip() no hace su trabajo??
 
tengo esta ruta:
 
route[8] {
     #         DO NOT AUTHORIZE YET.... AND ROUTE CALL
     xlog("L_ERR", "\n************** $ou ***********\n");
     xlog("L_ERR", "\n************** Changing dialed number (Removing 8888) **************\n");
     strip(4);
     xlog("L_ERR", "\n************** $ou ***********\n");
         
     if (!lookup("location")) {
          sl_send_reply("404", "Not Found");
          exit;
     };
 
 
y no hace el stripping!... log:
 
************** SOURCE IP: 200.198.182.202 ***********
************** sip:88887059999@200.198.182.203 ***********
************** Changing dialed number (Removing 8888) **************
************** sip:88887059999@200.198.182.203 ***********
 
 
muchas gracias... esto me está volviendo loco...
 
 
 
David