Package javax.sip.header

Examples of javax.sip.header.RouteHeader


     */
    if (outgoingDialog == null || outgoingDialog.getState() == null) {
      // first request, no route available
      final RouteList routeList = request.getRouteHeaders();
      if (routeList != null) {
        final RouteHeader topRoute = routeList.get(0);
        final URI topRouteURI = topRoute.getAddress().getURI();
        if (topRouteURI.isSipURI()) {
          final SipURI topRouteSipURI = (SipURI) topRouteURI;
          if (topRouteSipURI.getHost().equals(listeningPointImpl.getIPAddress())
              && topRouteSipURI.getPort() == listeningPointImpl.getPort()) {
            if (routeList.size() > 1) {
View Full Code Here

TOP

Related Classes of javax.sip.header.RouteHeader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.