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

Side by Side Diff: remoting/host/dns_blackhole_checker.h

Issue 10873050: [Chromoting] Hook up host talkgadget policy checks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change int to bool Created 8 years, 3 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 | « remoting/host/constants.cc ('k') | remoting/host/dns_blackhole_checker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « remoting/host/constants.cc ('k') | remoting/host/dns_blackhole_checker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698