VirtualBox

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

Last change on this file since 32953 was 30739, checked in by vboxsync, 14 years ago

Main: remove VirtualBoxSupportTranslation template, add translation support to generic base class, clean up COM headers more, remove SupportErrorInfo.cpp|h

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