HomeSort by relevance Sort by last modified time
    Searched full:hop (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/extensions/
libip6t_hl.man 1 This module matches the Hop Limit field in the IPv6 header.
4 Matches if Hop Limit equals \fIvalue\fP.
7 Matches if Hop Limit is less than \fIvalue\fP.
10 Matches if Hop Limit is greater than \fIvalue\fP.
libip6t_HL.man 1 This is used to modify the Hop Limit field in IPv6 header. The Hop Limit field
3 Hop Limit field can potentially be very dangerous, so it should be avoided at
11 Set the Hop Limit to `value'.
14 Decrement the Hop Limit `value' times.
17 Increment the Hop Limit `value' times.
libip6t_hbh.man 1 This module matches the parameters in Hop-by-Hop Options header
libip6t_ipv6header.man 12 \fBhop\fP|\fBhop\-by\-hop\fP
13 Hop-by-Hop Options header
  /external/nist-sip/java/javax/sip/address/
Hop.java 3 public interface Hop {
Router.java 8 Hop getNextHop(Request request) throws SipException;
10 Hop getOutboundProxy();
  /external/nist-sip/java/javax/sip/
ClientTransaction.java 3 import javax.sip.address.Hop;
19 Hop getNextHop();
  /external/nist-sip/java/gov/nist/core/net/
AddressResolver.java 31 import javax.sip.address.Hop;
38 * the Hop that it was passed (fixing up the port if necessary).
57 * @param hop - an incoming Hop containing a potenitally unresolved address.
58 * @return a new hop ( if the address is recomputed ) or the original hop
61 public Hop resolveAddress( Hop hop);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 53 public final class HopImpl extends Object implements javax.sip.address.Hop, Serializable {
69 * Create new hop given host, port and transport.
89 * Creates new Hop
90 * @param hop is a hop string in the form of host:port/Transport
93 HopImpl(String hop) throws IllegalArgumentException {
95 if (hop == null)
98 // System.out.println("hop = " + hop);
99 int brack = hop.indexOf(']')
    [all...]
DefaultRouter.java 66 * <code>false</code>, the next hop is determined according to the following
70 * topmost Route header as next hop, possibly modifying the request in the
73 * use its value as the next hop
74 * <li> Otherwise, use the request URI as next hop. If the request URI is not a
81 * (which means the next hop is a strict router), the implementation will
91 * Subsequently, the request URI will be used as next hop target
103 private Hop defaultRoute;
116 this.defaultRoute = (Hop) this.sipStack.getAddressResolver()
117 .resolveAddress((Hop) (new HopImpl(defaultRoute)));
133 * next hop on the list. If the default route has been specified, then it i
208 Hop hop = createHop(sipUri,request); local
219 Hop hop = createHop((SipURI) requestURI,request); local
237 Hop hop = createHop((SipURI) requestURI,request); local
    [all...]
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_HL.h 0 /* Hop Limit modification module for ip6tables
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /external/kernel-headers/original/linux/netfilter_ipv6/
ip6t_HL.h 0 /* Hop Limit modification module for ip6tables
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /external/nist-sip/java/gov/nist/javax/sip/address/
RouterExt.java 28 import javax.sip.address.Hop;
37 * Record that a transaction failure occured for the given hop.
40 public void transactionTimeout(Hop hop);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_HL.h 0 /* Hop Limit modification module for ip6tables
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_HL.h 0 /* Hop Limit modification module for ip6tables
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_HL.h 0 /* Hop Limit modification module for ip6tables
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
  /external/nist-sip/java/gov/nist/javax/sip/
DefaultAddressResolver.java 31 import javax.sip.address.Hop;
39 * feature. The address resolover is consulted to convert a Hop into a meaningful address. The default
61 * @see gov.nist.core.net.AddressResolver#resolveAddress(javax.sip.address.Hop)
63 public Hop resolveAddress(Hop inputAddress) {
ClientTransactionExt.java 9 import javax.sip.address.Hop;
38 * Get the next hop that was computed by the routing layer.
43 public Hop getNextHop();
TransactionExt.java 18 * Returns the IP address of the upstream/downstream hop from which this message was initially received
19 * @return the IP address of the upstream/downstream hop from which this message was initially received
24 * Returns the port of the upstream/downstream hop from which this message was initially received
25 * @return the port of the upstream/downstream hop from which this message was initially received
  /external/apache-http/src/org/apache/http/conn/routing/
RouteInfo.java 100 * A direct route has one hop. A route through a proxy has two hops.
110 * Obtains the target of a hop in this route.
111 * The target of the last hop is the {@link #getTargetHost target host},
113 * For a route through exactly one proxy, target of hop 0 is the proxy
114 * and target of hop 1 is the target host.
116 * @param hop index of the hop for which to get the target,
119 * @return the target of the given hop
125 HttpHost getHopTarget(int hop)

Completed in 1035 milliseconds

1 2 3 4 5 6 7 8 91011>>