Home | History | Annotate | Download | only in clientauthutils

Lines Matching refs:hop

37 import javax.sip.address.Hop;
208 /* Resolve this to the next hop based on the previous lookup. If we are not using
209 * lose routing (RFC2543) then just attach hop as a maddr param.
212 Hop hop = ((SIPClientTransaction) challengedTransaction).getNextHop();
215 if ( !hop.getHost().equalsIgnoreCase(sipUri.getHost())
216 && !hop.equals(sipStack.getRouter(challengedRequest).getOutboundProxy()) )
218 sipUri.setMAddrParam(hop.getHost());
219 if ( hop.getPort() != -1 ) sipUri.setPort(hop.getPort());