VirtualBox

source: vbox/trunk/src/VBox/Main/include/HostNetworkInterfaceImpl.h@ 22309

Last change on this file since 22309 was 21878, checked in by vboxsync, 15 years ago

Main: coding style: have Main obey the standard VirtualBox coding style rules (no functional changes)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1/* $Id: HostNetworkInterfaceImpl.h 21878 2009-07-30 12:42:08Z 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_HOSTNETWORKINTERFACEIMPL
25#define ____H_HOSTNETWORKINTERFACEIMPL
26
27#include "VirtualBoxBase.h"
28#include "VirtualBoxImpl.h"
29
30#ifdef VBOX_WITH_HOSTNETIF_API
31/* class HostNetworkInterface; */
32/* #include "netif.h" */
33struct NETIFINFO;
34#endif
35
36class ATL_NO_VTABLE HostNetworkInterface :
37 public VirtualBoxBase,
38 public VirtualBoxSupportErrorInfoImpl<HostNetworkInterface, IHostNetworkInterface>,
39 public VirtualBoxSupportTranslation<HostNetworkInterface>,
40 VBOX_SCRIPTABLE_IMPL(IHostNetworkInterface)
41{
42public:
43
44 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostNetworkInterface)
45
46 DECLARE_NOT_AGGREGATABLE (HostNetworkInterface)
47
48 DECLARE_PROTECT_FINAL_CONSTRUCT()
49
50 BEGIN_COM_MAP (HostNetworkInterface)
51 COM_INTERFACE_ENTRY (ISupportErrorInfo)
52 COM_INTERFACE_ENTRY (IHostNetworkInterface)
53 COM_INTERFACE_ENTRY (IDispatch)
54 END_COM_MAP()
55
56 NS_DECL_ISUPPORTS
57
58 DECLARE_EMPTY_CTOR_DTOR (HostNetworkInterface)
59
60 HRESULT FinalConstruct();
61 void FinalRelease();
62
63 // public initializer/uninitializer for internal purposes only
64 HRESULT init (Bstr interfaceName, Guid guid, HostNetworkInterfaceType_T ifType);
65#ifdef VBOX_WITH_HOSTNETIF_API
66 HRESULT init (Bstr aInterfaceName, HostNetworkInterfaceType_T ifType, struct NETIFINFO *pIfs);
67 HRESULT updateConfig ();
68#endif
69
70 // IHostNetworkInterface properties
71 STDMETHOD(COMGETTER(Name)) (BSTR *aInterfaceName);
72 STDMETHOD(COMGETTER(Id)) (BSTR *aGuid);
73 STDMETHOD(COMGETTER(DhcpEnabled)) (BOOL *aDhcpEnabled);
74 STDMETHOD(COMGETTER(IPAddress)) (BSTR *aIPAddress);
75 STDMETHOD(COMGETTER(NetworkMask)) (BSTR *aNetworkMask);
76 STDMETHOD(COMGETTER(IPV6Supported)) (BOOL *aIPV6Supported);
77 STDMETHOD(COMGETTER(IPV6Address)) (BSTR *aIPV6Address);
78 STDMETHOD(COMGETTER(IPV6NetworkMaskPrefixLength)) (ULONG *aIPV6NetworkMaskPrefixLength);
79 STDMETHOD(COMGETTER(HardwareAddress)) (BSTR *aHardwareAddress);
80 STDMETHOD(COMGETTER(MediumType)) (HostNetworkInterfaceMediumType_T *aType);
81 STDMETHOD(COMGETTER(Status)) (HostNetworkInterfaceStatus_T *aStatus);
82 STDMETHOD(COMGETTER(InterfaceType)) (HostNetworkInterfaceType_T *aType);
83 STDMETHOD(COMGETTER(NetworkName)) (BSTR *aNetworkName);
84
85 STDMETHOD(EnableStaticIpConfig) (IN_BSTR aIPAddress, IN_BSTR aNetworkMask);
86 STDMETHOD(EnableStaticIpConfigV6) (IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
87 STDMETHOD(EnableDynamicIpConfig) ();
88 STDMETHOD(DhcpRediscover) ();
89
90 // for VirtualBoxSupportErrorInfoImpl
91 static const wchar_t *getComponentName() { return L"HostNetworkInterface"; }
92
93 HRESULT setVirtualBox(VirtualBox *pVBox);
94private:
95 const Bstr mInterfaceName;
96 const Guid mGuid;
97 HostNetworkInterfaceType_T mIfType;
98
99 ComObjPtr<VirtualBox, ComWeakRef> mVBox;
100
101 struct Data
102 {
103 Data() : IPAddress (0), networkMask (0), dhcpEnabled(FALSE),
104 mediumType (HostNetworkInterfaceMediumType_Unknown),
105 status(HostNetworkInterfaceStatus_Down){}
106
107 ULONG IPAddress;
108 ULONG networkMask;
109 Bstr IPV6Address;
110 ULONG IPV6NetworkMaskPrefixLength;
111 ULONG realIPAddress;
112 ULONG realNetworkMask;
113 Bstr realIPV6Address;
114 ULONG realIPV6PrefixLength;
115 BOOL dhcpEnabled;
116 Bstr hardwareAddress;
117 HostNetworkInterfaceMediumType_T mediumType;
118 HostNetworkInterfaceStatus_T status;
119 } m;
120
121};
122
123#endif // ____H_H_HOSTNETWORKINTERFACEIMPL
124/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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