Home | History | Annotate | Download | only in stack

Lines Matching refs:hop

91 import javax.sip.address.Hop;
973 Hop hop = sipStack.getNextHop(ackRequest);
974 // Hop hop = defaultRouter.getNextHop(ackRequest);
975 if (hop == null)
979 sipStack.getStackLogger().logDebug("hop = " + hop);
980 ListeningPointImpl lp = (ListeningPointImpl) this.sipProvider.getListeningPoint(hop
984 + hop);
985 InetAddress inetAddress = InetAddress.getByName(hop.getHost());
987 inetAddress, hop.getPort());
1010 this.raiseIOException(hop.getHost(), hop.getPort(), hop.getTransport());
2103 Hop hop = ((SIPClientTransaction) clientTransactionId).getNextHop();
2106 "Using hop = " + hop.getHost() + " : " + hop.getPort());
2111 .getSipProvider().getListeningPoint(hop.getTransport()).getIPAddress(),
2112 this.firstTransactionPort, hop);
2134 * but the resulting next hop cannot be resolved (recall that the exception thrown
2148 Hop outboundProxy = sipStack.getRouter(dialogRequest).getOutboundProxy();
2150 throw new SipException("No route found! hop=" + hop);
2444 "Cannot create ACK - no ListeningPoint for transport towards next hop found:"