forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconnect_to_host_info.h
41 lines (32 loc) · 1.1 KB
/
connect_to_host_info.h
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
// Copyright 2017 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_CLIENT_CONNECT_TO_HOST_INFO_H_
#define REMOTING_CLIENT_CONNECT_TO_HOST_INFO_H_
#include <string>
#include "remoting/base/chromoting_event.h"
namespace remoting {
struct ConnectToHostInfo {
ConnectToHostInfo();
ConnectToHostInfo(const ConnectToHostInfo& other);
ConnectToHostInfo(ConnectToHostInfo&& other);
~ConnectToHostInfo();
ConnectToHostInfo& operator=(const ConnectToHostInfo& other);
std::string username;
std::string auth_token;
std::string host_jid;
std::string host_ftl_id;
std::string host_id;
std::string host_pubkey;
std::string pairing_id;
std::string pairing_secret;
std::string capabilities;
std::string flags;
std::string host_version;
std::string host_os;
std::string host_os_version;
ChromotingEvent::SessionEntryPoint session_entry_point =
ChromotingEvent::SessionEntryPoint::CONNECT_BUTTON;
};
} // namespace remoting
#endif // REMOTING_CLIENT_CONNECT_TO_HOST_INFO_H_