Home | History | Annotate | Download | only in okhttp

Lines Matching defs:dns

140   private Dns dns;
171 this.dns = okHttpClient.dns;
308 * Sets the DNS service used to lookup IP addresses for hostnames.
310 * <p>If unset, the {@link Dns#SYSTEM system-wide default} DNS will be used.
312 public OkHttpClient setDns(Dns dns) {
313 this.dns = dns;
317 public Dns getDns() {
318 return dns;
611 if (result.dns == null) {
612 result.dns = Dns.SYSTEM;