Home | History | Annotate | Download | only in stack

Lines Matching refs:router

75 import javax.sip.address.Router;
187 * Internal router. Use this for all sip: request routing.
237 * Router to determine where to forward the request.
239 protected javax.sip.address.Router router;
263 * Use the user supplied router for all out of dialog requests.
1780 // Use custom router to route all messages.
1781 if (router != null)
1782 return router.getNextHop(sipRequest);
1787 // router
1790 } else if (router != null) {
1791 return router.getNextHop(sipRequest);
1835 * Set the router algorithm. This is meant for routing messages out of dialog or for non-sip
1838 * @param router A class that implements the Router interface.
1840 protected void setRouter(Router router) {
1841 this.router = router;
1845 * Get the router algorithm.
1847 * @return Router router
1849 public Router getRouter(SIPRequest request) {
1853 return this.router;
1859 if (this.router != null)
1860 return this.router;
1872 public Router getRouter() {
1873 return this.router;