...
Code Block | ||||
---|---|---|---|---|
| ||||
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 | ||||
---|---|---|---|---|
| ||||