Home
last modified time | relevance | path

Searched refs:hop (Results 1 – 25 of 38) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/stack/
DHopImpl.java93 HopImpl(String hop) throws IllegalArgumentException { in HopImpl() argument
95 if (hop == null) in HopImpl()
99 int brack = hop.indexOf(']'); in HopImpl()
100 int colon = hop.indexOf(':',brack); in HopImpl()
101 int slash = hop.indexOf('/',colon); in HopImpl()
104 this.host = hop.substring(0,colon); in HopImpl()
107 portstr = hop.substring(colon+1,slash); in HopImpl()
108 this.transport = hop.substring(slash+1); in HopImpl()
110 portstr = hop.substring(colon+1); in HopImpl()
120 this.host = hop.substring(0,slash); in HopImpl()
[all …]
DDefaultRouter.java208 Hop hop = createHop(sipUri,request); in getNextHop() local
211 .logDebug("NextHop based on Route:" + hop); in getNextHop()
212 return hop; in getNextHop()
219 Hop hop = createHop((SipURI) requestURI,request); in getNextHop() local
223 + hop.toString()); in getNextHop()
228 return hop; in getNextHop()
237 Hop hop = createHop((SipURI) requestURI,request); in getNextHop() local
238 if (hop != null && sipStack.isLoggingEnabled()) in getNextHop()
240 + hop.toString()); in getNextHop()
245 return hop; in getNextHop()
DMessageChannel.java199 public void sendMessage(SIPMessage sipMessage, Hop hop) throws IOException { in sendMessage() argument
201 InetAddress hopAddr = InetAddress.getByName(hop.getHost()); in sendMessage()
207 && messageProcessor.getPort() == hop.getPort() in sendMessage()
208 && messageProcessor.getTransport().equals(hop.getTransport())) { in sendMessage()
210 hopAddr, hop.getPort()); in sendMessage()
222 this.sendMessage(msg, hopAddr, hop.getPort(), sipMessage instanceof SIPRequest); in sendMessage()
235 logMessage(sipMessage, hopAddr, hop.getPort(), time); in sendMessage()
DSIPDialog.java973 Hop hop = sipStack.getNextHop(ackRequest); in sendAck() local
975 if (hop == null) in sendAck()
979 sipStack.getStackLogger().logDebug("hop = " + hop); in sendAck()
980 ListeningPointImpl lp = (ListeningPointImpl) this.sipProvider.getListeningPoint(hop in sendAck()
984 + hop); in sendAck()
985 InetAddress inetAddress = InetAddress.getByName(hop.getHost()); in sendAck()
987 inetAddress, hop.getPort()); in sendAck()
1010 this.raiseIOException(hop.getHost(), hop.getPort(), hop.getTransport()); in sendAck()
2103 Hop hop = ((SIPClientTransaction) clientTransactionId).getNextHop(); in sendRequest() local
2106 "Using hop = " + hop.getHost() + " : " + hop.getPort()); in sendRequest()
[all …]
DUDPMessageChannel.java420 Hop hop = sipStack.addressResolver.resolveAddress(v.getHop()); in processIncomingDataPacket() local
421 this.peerPort = hop.getPort(); in processIncomingDataPacket()
434 || !hop.getHost().equals( in processIncomingDataPacket()
DSIPServerTransaction.java477 Hop hop = sipStack.addressResolver.resolveAddress(new HopImpl(host, port, in sendResponse() local
482 hop.getTransport()).getIPAddress(), this.getPort(), hop); in sendResponse()
486 throw new IOException("Could not create a message channel for " + hop); in sendResponse()
DTCPMessageChannel.java437 Hop hop = sipStack.addressResolver.resolveAddress(v.getHop()); in processMessage() local
452 || !hop.getHost().equals(this.peerAddress.getHostAddress())) { in processMessage()
/external/tcpdump/tests/
Dripv2_auth.out5 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
10 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
15 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
22 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
29 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
37 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
45 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
53 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
61 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
70 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
[all …]
Dripv1v2.out12 AFI 0, 0.0.0.0/0 , tag 0x0000, metric: 16, next-hop: self
16 AFI IPv4, 10.70.178.0/24, tag 0x0000, metric: 1, next-hop: self
Dicmpv6.out2hop limit 64, Flags [home agent], pref medium, router lifetime 15s, reachable time 0s, retrans tim…
/external/nist-sip/java/gov/nist/javax/sip/
DSipProviderImpl.java344 Hop hop = null; in getNewClientTransaction() local
346 hop = sipStack.getNextHop((SIPRequest) request); in getNewClientTransaction()
347 if (hop == null) in getNewClientTransaction()
354 String transport = hop.getTransport(); in getNewClientTransaction()
399 .getMessageProcessor(), hop); in getNewClientTransaction()
402 ct.setNextHop(hop); in getNewClientTransaction()
682 Hop hop = sipStack.getRouter((SIPRequest) request).getNextHop(request); in sendRequest() local
683 if (hop == null) in sendRequest()
705 if (this.listeningPoints.containsKey(hop.getTransport() in sendRequest()
708 this.getListeningPoint(hop.getTransport()).getIPAddress(), in sendRequest()
[all …]
/external/apache-http/src/org/apache/http/conn/routing/
DRouteTracker.java245 public final HttpHost getHopTarget(int hop) { in getHopTarget() argument
246 if (hop < 0) in getHopTarget()
248 ("Hop index must not be negative: " + hop); in getHopTarget()
250 if (hop >= hopcount) { in getHopTarget()
252 ("Hop index " + hop + in getHopTarget()
257 if (hop < hopcount-1) in getHopTarget()
258 result = this.proxyChain[hop]; in getHopTarget()
DHttpRoute.java281 public final HttpHost getHopTarget(int hop) { in getHopTarget() argument
282 if (hop < 0) in getHopTarget()
284 ("Hop index must not be negative: " + hop); in getHopTarget()
286 if (hop >= hopcount) in getHopTarget()
288 ("Hop index " + hop + in getHopTarget()
292 if (hop < hopcount-1) in getHopTarget()
293 result = this.proxyChain[hop]; in getHopTarget()
DRouteInfo.java130 HttpHost getHopTarget(int hop) in getHopTarget() argument
/external/vixl/examples/
Ddebugger.cc39 Label hop; in GenerateBreak() local
42 __ B(&hop); in GenerateBreak()
44 __ Bind(&hop); in GenerateBreak()
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DAuthenticationHelperImpl.java212 Hop hop = ((SIPClientTransaction) challengedTransaction).getNextHop(); in handleChallenge() local
215 if ( !hop.getHost().equalsIgnoreCase(sipUri.getHost()) in handleChallenge()
216 && !hop.equals(sipStack.getRouter(challengedRequest).getOutboundProxy()) ) in handleChallenge()
218 sipUri.setMAddrParam(hop.getHost()); in handleChallenge()
219 if ( hop.getPort() != -1 ) sipUri.setPort(hop.getPort()); in handleChallenge()
/external/nist-sip/java/gov/nist/javax/sip/address/
DRouterExt.java40 public void transactionTimeout(Hop hop); in transactionTimeout() argument
/external/iputils/doc/
Dtracepath.sgml108 The second column shows the network hop, which replied to the probe.
115 the correspinding network hop. As rule it contains value of RTT.
118 or the probe finishes before it reach prescribed hop, difference
122 with TTL of 2 was rejected at the first hop due to Path MTU Discovery.
/external/nist-sip/java/gov/nist/core/net/
DAddressResolver.java61 public Hop resolveAddress( Hop hop); in resolveAddress() argument
/external/iptables/tests/
Doptions-most.rules13 -A INPUT -m ipv6header --header hop-by-hop --soft
45 -A INPUT -p tcp -m hbh -m hbh -m hl --hl-eq 1 -m ipv6header --header hop-by-hop --soft
46 -A INPUT -m ipv6header --header hop-by-hop --soft -m rt --rt-type 2 --rt-segsleft 2 --rt-len 5 -m r…
/external/nist-sip/java/gov/nist/javax/sip/header/
DVia.java157 HopImpl hop = new HopImpl(sentBy.getHost().getHostname(), in getHop() local
159 return hop; in getHop()
/external/iproute2/doc/
Dapi-ip6-flowlabels.tex58 hop by hop options and all the headers up to and including routing header,
62 There is a hole in specs: some hop-by-hop options can be
80 (f.e.\ in RSVP PATH messages or in some hop-by-hop option).
/external/iptables/extensions/
Dlibip6t_ipv6header.man12 \fBhop\fP|\fBhop\-by\-hop\fP
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DDefaultRequestDirector.java674 final int hop = fact.getHopCount()-1; // the hop to establish in establishRoute() local
675 boolean secure = createTunnelToProxy(route, hop, context); in establishRoute()
677 managedConn.tunnelProxy(route.getHopTarget(hop), in establishRoute()
861 protected boolean createTunnelToProxy(HttpRoute route, int hop, in createTunnelToProxy() argument
/external/apache-http/src/org/apache/http/impl/client/
DDefaultRequestDirector.java657 final int hop = fact.getHopCount()-1; // the hop to establish in establishRoute() local
658 boolean secure = createTunnelToProxy(route, hop, context); in establishRoute()
660 managedConn.tunnelProxy(route.getHopTarget(hop), in establishRoute()
845 protected boolean createTunnelToProxy(HttpRoute route, int hop, in createTunnelToProxy() argument

12