| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_HOST_DNS_BLACKHOLE_CHECKER_H_ |
| 6 #define REMOTING_HOST_DNS_BLACKHOLE_CHECKER_H_ |
| 7 |
| 8 #include "net/url_request/url_fetcher_delegate.h" |
| 9 |
| 10 #include "base/callback.h" |
| 11 |
| 12 namespace remoting { |
| 13 |
| 14 // This is the default prefix that is prepended to the kTalkGadgetUrl to form |
| 15 // the complete talkgadget URL used by the host. Policy settings allow admins |
| 16 // to change the prefix that is used. |
| 17 extern const char kDefaultHostTalkGadgetPrefix[]; |
| 18 |
| 19 class ChromotingHostContext; |
| 20 |
| 21 class DnsBlackholeChecker : public net::URLFetcherDelegate { |
| 22 public: |
| 23 DnsBlackholeChecker(ChromotingHostContext* context, |
| 24 std::string talkgadget_prefix); |
| 25 virtual ~DnsBlackholeChecker(); |
| 26 |
| 27 // net::URLFetcherDelegate interface. |
| 28 virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE; |
| 29 |
| 30 // Initiates a check the verify that the host talkgadget has not been "DNS |
| 31 // blackholed" to prevent connections. If this is called again before the |
| 32 // callback has been called, then the second call is ignored. |
| 33 void CheckForDnsBlackhole(const base::Callback<void(bool)>& callback); |
| 34 |
| 35 private: |
| 36 ChromotingHostContext* context_; |
| 37 |
| 38 // URL fetcher used to verify access to the host talkgadget. |
| 39 scoped_ptr<net::URLFetcher> url_fetcher_; |
| 40 |
| 41 // The string pre-pended to '.talkgadget.google.com' to create the full |
| 42 // talkgadget domain name for the host. |
| 43 std::string talkgadget_prefix_; |
| 44 |
| 45 // Called with the results of the connection check. |
| 46 base::Callback<void(bool)> callback_; |
| 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(DnsBlackholeChecker); |
| 49 }; |
| 50 |
| 51 } // namespace remoting |
| 52 |
| 53 #endif // REMOTING_HOST_DNS_BLACKHOLE_CHECKER_H_ |
| OLD | NEW |