VirtualBox

source: vbox/trunk/src/VBox/Main/include/DHCPServerImpl.h@ 25414

Last change on this file since 25414 was 23319, checked in by vboxsync, 15 years ago

Main: more header cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: DHCPServerImpl.h 23319 2009-09-25 09:20:29Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#ifndef ____H_H_DHCPSERVERIMPL
25#define ____H_H_DHCPSERVERIMPL
26
27#include "VirtualBoxBase.h"
28
29class VirtualBox;
30
31#ifdef VBOX_WITH_HOSTNETIF_API
32struct NETIFINFO;
33#endif
34
35namespace settings
36{
37 struct DHCPServer;
38}
39
40class ATL_NO_VTABLE DHCPServer :
41 public VirtualBoxBase,
42 public VirtualBoxSupportErrorInfoImpl<DHCPServer, IDHCPServer>,
43 public VirtualBoxSupportTranslation<DHCPServer>,
44 VBOX_SCRIPTABLE_IMPL(IDHCPServer)
45{
46public:
47
48 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (DHCPServer)
49
50 DECLARE_NOT_AGGREGATABLE (DHCPServer)
51
52 DECLARE_PROTECT_FINAL_CONSTRUCT()
53
54 BEGIN_COM_MAP (DHCPServer)
55 COM_INTERFACE_ENTRY (ISupportErrorInfo)
56 COM_INTERFACE_ENTRY (IDHCPServer)
57 COM_INTERFACE_ENTRY (IDispatch)
58 END_COM_MAP()
59
60 DECLARE_EMPTY_CTOR_DTOR (DHCPServer)
61
62 HRESULT FinalConstruct();
63 void FinalRelease();
64
65 HRESULT init(VirtualBox *aVirtualBox,
66 IN_BSTR aName);
67 HRESULT init(VirtualBox *aVirtualBox,
68 const settings::DHCPServer &data);
69 HRESULT saveSettings(settings::DHCPServer &data);
70
71 void uninit();
72
73 // IDHCPServer properties
74 STDMETHOD(COMGETTER(NetworkName))(BSTR *aName);
75 STDMETHOD(COMGETTER(Enabled))(BOOL *aEnabled);
76 STDMETHOD(COMSETTER(Enabled))(BOOL aEnabled);
77 STDMETHOD(COMGETTER(IPAddress))(BSTR *aIPAddress);
78 STDMETHOD(COMGETTER(NetworkMask))(BSTR *aNetworkMask);
79 STDMETHOD(COMGETTER(LowerIP))(BSTR *aIPAddress);
80 STDMETHOD(COMGETTER(UpperIP))(BSTR *aIPAddress);
81
82 STDMETHOD(SetConfiguration)(IN_BSTR aIPAddress, IN_BSTR aNetworkMask, IN_BSTR aFromIPAddress, IN_BSTR aToIPAddress);
83
84 STDMETHOD(Start)(IN_BSTR aNetworkName, IN_BSTR aTrunkName, IN_BSTR aTrunkType);
85 STDMETHOD(Stop)();
86
87 // for VirtualBoxSupportErrorInfoImpl
88 static const wchar_t *getComponentName() { return L"DHCPServer"; }
89
90private:
91 /** weak VirtualBox parent */
92 const ComObjPtr<VirtualBox, ComWeakRef> mVirtualBox;
93
94 const Bstr mName;
95
96 struct Data
97 {
98 Data() : enabled(FALSE) {}
99
100 Bstr IPAddress;
101 Bstr networkMask;
102 Bstr lowerIP;
103 Bstr upperIP;
104 BOOL enabled;
105
106 DHCPServerRunner dhcp;
107 } m;
108
109};
110
111#endif // ____H_H_DHCPSERVERIMPL
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use