Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: net/base/host_resolver.h

Issue 9369045: [net] HostResolverImpl + DnsTransaction + DnsConfigService = Asynchronous DNS ready for experiments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Denitted. Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/address_list_unittest.cc ('k') | net/base/host_resolver_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_HOST_RESOLVER_H_ 5 #ifndef NET_BASE_HOST_RESOLVER_H_
6 #define NET_BASE_HOST_RESOLVER_H_ 6 #define NET_BASE_HOST_RESOLVER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 size_t max_concurrent_resolves, 181 size_t max_concurrent_resolves,
182 size_t max_retry_attempts, 182 size_t max_retry_attempts,
183 NetLog* net_log); 183 NetLog* net_log);
184 184
185 // As above, but the created HostResolver does not use a cache. 185 // As above, but the created HostResolver does not use a cache.
186 NET_EXPORT HostResolver* CreateNonCachingSystemHostResolver( 186 NET_EXPORT HostResolver* CreateNonCachingSystemHostResolver(
187 size_t max_concurrent_resolves, 187 size_t max_concurrent_resolves,
188 size_t max_retry_attempts, 188 size_t max_retry_attempts,
189 NetLog* net_log); 189 NetLog* net_log);
190 190
191 // Creates a HostResolver implementation that sends actual DNS queries to 191 // As above, but the HostResolver will use the asynchronous DNS client in
192 // the specified DNS server and parses response and returns results. 192 // DnsTransaction, which will be configured using DnsConfigService to match
193 // the system DNS settings. If the client fails, the resolver falls back to
194 // the global HostResolverProc.
193 NET_EXPORT HostResolver* CreateAsyncHostResolver(size_t max_concurrent_resolves, 195 NET_EXPORT HostResolver* CreateAsyncHostResolver(size_t max_concurrent_resolves,
194 const IPAddressNumber& dns_ip, 196 size_t max_retry_attempts,
195 NetLog* net_log); 197 NetLog* net_log);
196 } // namespace net 198 } // namespace net
197 199
198 #endif // NET_BASE_HOST_RESOLVER_H_ 200 #endif // NET_BASE_HOST_RESOLVER_H_
OLDNEW
« no previous file with comments | « net/base/address_list_unittest.cc ('k') | net/base/host_resolver_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698