| OLD | NEW |
| 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 #include "net/dns/dns_client.h" | 5 #include "net/dns/dns_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/rand_util.h" | 8 #include "base/rand_util.h" |
| 9 #include "net/base/net_log.h" | 9 #include "net/base/net_log.h" |
| 10 #include "net/dns/address_sorter.h" | 10 #include "net/dns/address_sorter.h" |
| 11 #include "net/dns/dns_config_service.h" | 11 #include "net/dns/dns_config_service.h" |
| 12 #include "net/dns/dns_session.h" | 12 #include "net/dns/dns_session.h" |
| 13 #include "net/dns/dns_transaction.h" | 13 #include "net/dns/dns_transaction.h" |
| 14 #include "net/socket/client_socket_factory.h" | 14 #include "net/socket/client_socket_factory.h" |
| 15 | 15 |
| 16 namespace net { | 16 namespace net { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 class DnsClientImpl : public DnsClient { | 20 class DnsClientImpl : public DnsClient { |
| 21 public: | 21 public: |
| 22 explicit DnsClientImpl(NetLog* net_log) | 22 explicit DnsClientImpl(NetLog* net_log) |
| 23 : address_sorter_(AddressSorter::CreateAddressSorter()), | 23 : address_sorter_(AddressSorter::CreateAddressSorter()), |
| 24 net_log_(net_log) {} | 24 net_log_(net_log) {} |
| 25 | 25 |
| 26 virtual void SetConfig(const DnsConfig& config) OVERRIDE { | 26 virtual void SetConfig(const DnsConfig& config) OVERRIDE { |
| 27 factory_.reset(); | 27 factory_.reset(); |
| 28 session_.release(); | 28 session_ = NULL; |
| 29 if (config.IsValid()) { | 29 if (config.IsValid()) { |
| 30 session_ = new DnsSession(config, | 30 session_ = new DnsSession(config, |
| 31 ClientSocketFactory::GetDefaultFactory(), | 31 ClientSocketFactory::GetDefaultFactory(), |
| 32 base::Bind(&base::RandInt), | 32 base::Bind(&base::RandInt), |
| 33 net_log_); | 33 net_log_); |
| 34 factory_ = DnsTransactionFactory::CreateFactory(session_); | 34 factory_ = DnsTransactionFactory::CreateFactory(session_); |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 virtual const DnsConfig* GetConfig() const OVERRIDE { | 38 virtual const DnsConfig* GetConfig() const OVERRIDE { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 57 | 57 |
| 58 } // namespace | 58 } // namespace |
| 59 | 59 |
| 60 // static | 60 // static |
| 61 scoped_ptr<DnsClient> DnsClient::CreateClient(NetLog* net_log) { | 61 scoped_ptr<DnsClient> DnsClient::CreateClient(NetLog* net_log) { |
| 62 return scoped_ptr<DnsClient>(new DnsClientImpl(net_log)); | 62 return scoped_ptr<DnsClient>(new DnsClientImpl(net_log)); |
| 63 } | 63 } |
| 64 | 64 |
| 65 } // namespace net | 65 } // namespace net |
| 66 | 66 |
| OLD | NEW |