blob: 482b1fb946871c7d1b6c6974f00b9202a9b5861a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_HOST_STATUS_OBSERVER_H_
#define REMOTING_HOST_HOST_STATUS_OBSERVER_H_
#include <string>
namespace net {
class IPEndPoint;
} // namespace net
namespace remoting {
class SignalStrategy;
namespace protocol {
struct TransportRoute;
};
// Interface for host status observer. All methods are invoked on the
// network thread. Observers must not tear-down ChromotingHost state
// on receipt of these callbacks; they are purely informational.
class HostStatusObserver {
public:
HostStatusObserver() { }
virtual ~HostStatusObserver() { }
// Called when an unauthorized user attempts to connect to the host.
virtual void OnAccessDenied(const std::string& jid) {}
// A new client is authenticated.
virtual void OnClientAuthenticated(const std::string& jid) {}
// All channels for an autheticated client are connected.
virtual void OnClientConnected(const std::string& jid) {}
// An authenticated client is disconnected.
virtual void OnClientDisconnected(const std::string& jid) {}
// Called on notification of a route change event, when a channel is
// connected.
virtual void OnClientRouteChange(const std::string& jid,
const std::string& channel_name,
const protocol::TransportRoute& route) {}
// Called when the host shuts down.
virtual void OnShutdown() {}
};
} // namespace remoting
#endif // REMOTING_HOST_HOST_STATUS_OBSERVER_H_
|