Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titlerouts.js
borderStylesolid
function Route()
{
    this.sendRegister(
           "user", "myitsp.com", "passwd", "proxy.myitsp.com", 1800, 0);
    this.sendRegister(
           "user2", "myitsp.com", "passwd2", "proxy.myitsp.com", 1800, 0);
}

Route.prototype = new RouteProfile();

Route.prototype.isRoutable = function()
{
    if (is_mysipdomain_routable(this))
        return true;
    else
        return false;
}
Code Block
titlemydomain.com.js
borderStylesolid