VirtualBox

source: vbox/trunk/src/VBox/Main/include/VRDPServerImpl.h@ 1218

Last change on this file since 1218 was 1218, checked in by vboxsync, 18 years ago

Implemented binding the RDP server to a specific interface.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef ____H_VRDPSERVER
23#define ____H_VRDPSERVER
24
25#include "VirtualBoxBase.h"
26
27#include <VBox/VRDPAuth.h>
28#include <VBox/cfgldr.h>
29
30class Machine;
31
32class ATL_NO_VTABLE VRDPServer :
33 public VirtualBoxSupportErrorInfoImpl <VRDPServer, IVRDPServer>,
34 public VirtualBoxSupportTranslation <VRDPServer>,
35 public VirtualBoxBase,
36 public IVRDPServer
37{
38public:
39
40 struct Data
41 {
42 bool operator== (const Data &that) const
43 {
44 return this == &that ||
45 (mEnabled == that.mEnabled &&
46 mVRDPPort == that.mVRDPPort &&
47 mVRDPAddress == that.mVRDPAddress &&
48 mAuthType == that.mAuthType &&
49 mAuthTimeout == that.mAuthTimeout);
50 }
51
52 BOOL mEnabled;
53 ULONG mVRDPPort;
54 Bstr mVRDPAddress;
55 VRDPAuthType_T mAuthType;
56 ULONG mAuthTimeout;
57 };
58
59 DECLARE_NOT_AGGREGATABLE(VRDPServer)
60
61 DECLARE_PROTECT_FINAL_CONSTRUCT()
62
63 BEGIN_COM_MAP(VRDPServer)
64 COM_INTERFACE_ENTRY(ISupportErrorInfo)
65 COM_INTERFACE_ENTRY(IVRDPServer)
66 END_COM_MAP()
67
68 NS_DECL_ISUPPORTS
69
70 HRESULT FinalConstruct();
71 void FinalRelease();
72
73 // public initializer/uninitializer for internal purposes only
74 HRESULT init(Machine *parent);
75 HRESULT init(Machine *parent, VRDPServer *that);
76 HRESULT initCopy (Machine *parent, VRDPServer *that);
77 void uninit();
78
79 // IVRDPServer properties
80 STDMETHOD(COMGETTER(Enabled))(BOOL *enabled);
81 STDMETHOD(COMSETTER(Enabled))(BOOL enable);
82 STDMETHOD(COMGETTER(Port))(ULONG *port);
83 STDMETHOD(COMSETTER(Port))(ULONG port);
84 STDMETHOD(COMGETTER(NetAddress))(BSTR *address);
85 STDMETHOD(COMSETTER(NetAddress))(INPTR BSTR address);
86 STDMETHOD(COMGETTER(AuthType))(VRDPAuthType_T *type);
87 STDMETHOD(COMSETTER(AuthType))(VRDPAuthType_T type);
88 STDMETHOD(COMGETTER(AuthTimeout))(ULONG *timeout);
89 STDMETHOD(COMSETTER(AuthTimeout))(ULONG timeout);
90
91 // IVRDPServer methods
92
93 // public methods only for internal purposes
94
95 void loadConfig (CFGNODE node);
96 void saveConfig (CFGNODE node);
97
98 const Backupable <Data> &data() const { return mData; }
99
100 bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }
101 bool isReallyModified() { AutoLock alock (this); return mData.hasActualChanges(); }
102 bool rollback();
103 void commit();
104 void copyFrom (VRDPServer *aThat);
105
106 // for VirtualBoxSupportErrorInfoImpl
107 static const wchar_t *getComponentName() { return L"VRDPServer"; }
108
109private:
110
111 ComObjPtr <Machine, ComWeakRef> mParent;
112 ComObjPtr <VRDPServer> mPeer;
113 Backupable <Data> mData;
114};
115
116#endif // ____H_VRDPSERVER
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette