Home | History | Annotate | Download | only in okhttp

Lines Matching defs:address

29  *   <li><strong>IP address:</strong> whether connecting directly to an origin
30 * server or a proxy, opening a socket requires an IP address. The DNS
37 final Address address;
41 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
42 if (address == null) {
43 throw new NullPointerException("address == null");
51 this.address = address;
56 public Address getAddress() {
57 return address;
63 * <strong>Warning:</strong> This may disagree with {@link Address#getProxy}
64 * when it is null. When the address's proxy is null, the proxy selector is
80 return address.sslSocketFactory != null && proxy.type() == Proxy.Type.HTTP;
86 return address.equals(other.address)
95 result = 31 * result + address.hashCode();