VirtualBox

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

Last change on this file since 17497 was 17497, checked in by vboxsync, 16 years ago

burn fix

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/* $Id: HostNetworkInterfaceImpl.h 17497 2009-03-06 17:06:07Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2008 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.215389.xyz. 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 "Collection.h"
29#include "VirtualBoxImpl.h"
30
31#ifdef VBOX_WITH_HOSTNETIF_API
32/* class HostNetworkInterface; */
33/* #include "netif.h" */
34struct NETIFINFO;
35#endif
36
37class ATL_NO_VTABLE HostNetworkInterface :
38 public VirtualBoxBaseNEXT,
39 public VirtualBoxSupportErrorInfoImpl <HostNetworkInterface, IHostNetworkInterface>,
40 public VirtualBoxSupportTranslation <HostNetworkInterface>,
41 public IHostNetworkInterface
42{
43public:
44
45 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostNetworkInterface)
46
47 DECLARE_NOT_AGGREGATABLE (HostNetworkInterface)
48
49 DECLARE_PROTECT_FINAL_CONSTRUCT()
50
51 BEGIN_COM_MAP (HostNetworkInterface)
52 COM_INTERFACE_ENTRY (ISupportErrorInfo)
53 COM_INTERFACE_ENTRY (IHostNetworkInterface)
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)) (OUT_GUID aGuid);
73 STDMETHOD(COMGETTER(IPAddress)) (ULONG *aIPAddress);
74 STDMETHOD(COMGETTER(NetworkMask)) (ULONG *aNetworkMask);
75 STDMETHOD(COMGETTER(IPV6Supported)) (BOOL *aIPV6Supported);
76 STDMETHOD(COMGETTER(IPV6Address)) (BSTR *aIPV6Address);
77 STDMETHOD(COMGETTER(IPV6NetworkMask)) (BSTR *aIPV6Mask);
78 STDMETHOD(COMGETTER(HardwareAddress)) (BSTR *aHardwareAddress);
79 STDMETHOD(COMGETTER(MediumType)) (HostNetworkInterfaceMediumType_T *aType);
80 STDMETHOD(COMGETTER(Status)) (HostNetworkInterfaceStatus_T *aStatus);
81 STDMETHOD(COMGETTER(InterfaceType)) (HostNetworkInterfaceType_T *aType);
82
83 STDMETHOD(EnableStaticIpConfig) (ULONG aIPAddress, ULONG aNetworkMask);
84 STDMETHOD(EnableStaticIpConfigV6) (IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength);
85 STDMETHOD(EnableDynamicIpConfig) ();
86
87 // for VirtualBoxSupportErrorInfoImpl
88 static const wchar_t *getComponentName() { return L"HostNetworkInterface"; }
89
90 HRESULT setVirtualBox(VirtualBox *pVBox);
91 HRESULT getVirtualBox(VirtualBox **ppVBox);
92private:
93 const Bstr mInterfaceName;
94 const Guid mGuid;
95 HostNetworkInterfaceType_T mIfType;
96
97 ComObjPtr <VirtualBox, ComWeakRef> mVBox;
98
99 struct Data
100 {
101 Data() : IPAddress (0), networkMask (0),
102 mediumType (HostNetworkInterfaceMediumType_Unknown),
103 status(HostNetworkInterfaceStatus_Down){}
104
105 ULONG IPAddress;
106 ULONG networkMask;
107 Bstr IPV6Address;
108 Bstr IPV6NetworkMask;
109 Bstr hardwareAddress;
110 HostNetworkInterfaceMediumType_T mediumType;
111 HostNetworkInterfaceStatus_T status;
112 } m;
113
114};
115
116#endif // ____H_H_HOSTNETWORKINTERFACEIMPL
117/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

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