Home | History | Annotate | Download | only in okhttp

Lines Matching defs:address

28  *   <li><strong>IP address:</strong> whether connecting directly to an origin
29 * server or a proxy, opening a socket requires an IP address. The DNS
35 final Address address;
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
40 if (address == null) {
41 throw new NullPointerException("address == null");
49 this.address = address;
54 public Address getAddress() {
55 return address;
61 * <strong>Warning:</strong> This may disagree with {@link Address#getProxy}
62 * when it is null. When the address's proxy is null, the proxy selector is
78 return address.sslSocketFactory != null && proxy.type() == Proxy.Type.HTTP;
84 return address.equals(other.address)
93 result = 31 * result + address.hashCode();