HomeSort by relevance Sort by last modified time
    Searched refs:Route (Results 1 - 14 of 14) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
RouteList.java 35 * A list of Route Headers.
44 public class RouteList extends SIPHeaderList<Route> {
52 super(Route.class, RouteHeader.NAME);
69 * Order is important when comparing route lists.
77 ListIterator<Route> it = this.listIterator();
78 ListIterator<Route> it1 = that.listIterator();
80 Route route = (Route) it.next(); local
81 Route route1 = (Route) it1.next()
    [all...]
Route.java 36 * Route SIPHeader Object
44 public class Route
55 public Route() {
65 public Route(AddressImpl address) {
NameMap.java 131 putNameMap(ROUTE, Route.class.getName()); //27
HeaderFactoryImpl.java 897 Route route = new Route(); local
898 route.setAddress(address);
900 return route;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RouteParser.java 31 * Parser for a list of route headers.
45 * @param route message to parse to set
47 public RouteParser(String route) {
48 super(route);
55 /** parse the String message and generate the Route List Object
56 * @return SIPHeader the Route List object
65 this.lexer.match(TokenTypes.ROUTE);
70 Route route = new Route(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 51 * URI Jiang He - use address in route header. Significant changes to conform to
53 * strict route post processing code.
69 * <li> If the request contains one or more Route headers, use the URI of the
70 * topmost Route header as next hop, possibly modifying the request in the
71 * process if the topmost Route header contains no lr parameter(*)
80 * (*)Note that in case the topmost Route header contains no 'lr' parameter
82 * perform 'Route Information Postprocessing' as described in RFC3261 section
83 * 16.6 step 6 (also known as "Route header popping"). That is, the following
86 * <li>The implementation places the Request-URI into the Route header field as
88 * <li>The implementation then places the first Route header field value int
196 Route route = (Route) routes.getFirst(); local
272 Route route = new Route(addr); local
    [all...]
SIPClientTransaction.java 36 import gov.nist.javax.sip.header.Route;
529 * add the route before you process the response. dialog.setLastResponse(this,
1166 Route route = new Route(); local
1181 Route route = null; local
    [all...]
SIPDialog.java 52 import gov.nist.javax.sip.header.Route;
112 * reported a bug in updating the route set (on RE-INVITE). Jens Tinfors submitted a bug fix and
733 * Add a route list extracted from a record route list. If this is a server dialog then we
734 * assume that the record are added to the route list IN order. If this is a client dialog
735 * then we assume that the record route headers give us the route list to add in reverse
738 * @param recordRouteList -- the record route list from the incoming message.
745 // route from the response and reverse its order to
746 // careate a route list
756 Route route = new Route(); local
778 Route route = new Route(); local
900 Route route = (Route) li.next(); local
2682 Route route = (Route) routeList.getFirst(); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 68 ATTRIBUTE Ascend-IPX-Route 174 string
122 ATTRIBUTE Ascend-Route-IP 228 integer
123 ATTRIBUTE Ascend-Route-IPX 229 integer
186 VALUE Ascend-Route-IPX Route-IPX-No 0
187 VALUE Ascend-Route-IPX Route-IPX-Yes 1
dictionary 65 ATTRIBUTE Framed-Route 22 string
  /external/nist-sip/java/gov/nist/javax/sip/message/
ListMap.java 79 headerListTable.put(Route.class, RouteList.class);
SIPMessage.java 55 import gov.nist.javax.sip.header.Route;
191 || sipHeader instanceof ProxyRequireList || sipHeader instanceof Route
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 37 import gov.nist.javax.sip.header.Route;
299 * assigned to the dialog. Forgive the sins of B2BUA's that like to record route ACK's
360 * RFC 3261 Section 16.4 If the first value in the Route header field indicates this
366 // Route header. If the request is being processed by an
367 // endpoint, then the stack strips off the route header.
368 if (sipRequest.getHeader(Route.NAME) != null && transaction.getDialog() != null) {
370 Route route = (Route) routes.getFirst(); local
371 SipUri uri = (SipUri) route.getAddress().getURI()
    [all...]
  /external/iproute2/doc/
ip-cref.tex 115 \item \verb|route| --- routing table entry
    [all...]

Completed in 937 milliseconds