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 | #include "HostNetworkInterfaceImpl.h"
|
---|
23 |
|
---|
24 | // constructor / destructor
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 |
|
---|
27 | HostNetworkInterface::HostNetworkInterface()
|
---|
28 | {
|
---|
29 | }
|
---|
30 |
|
---|
31 | HostNetworkInterface::~HostNetworkInterface()
|
---|
32 | {
|
---|
33 | }
|
---|
34 |
|
---|
35 | // public initializer/uninitializer for internal purposes only
|
---|
36 | /////////////////////////////////////////////////////////////////////////////
|
---|
37 |
|
---|
38 | /**
|
---|
39 | * Initializes the host object.
|
---|
40 | *
|
---|
41 | * @returns COM result indicator
|
---|
42 | * @param interfaceName name of the network interface
|
---|
43 | */
|
---|
44 | HRESULT HostNetworkInterface::init (Bstr interfaceName, Guid guid)
|
---|
45 | {
|
---|
46 | ComAssertRet (interfaceName && !guid.isEmpty(), E_INVALIDARG);
|
---|
47 |
|
---|
48 | AutoLock lock(this);
|
---|
49 | mInterfaceName = interfaceName;
|
---|
50 | mGuid = guid;
|
---|
51 | setReady(true);
|
---|
52 | return S_OK;
|
---|
53 | }
|
---|
54 |
|
---|
55 | // IHostNetworkInterface properties
|
---|
56 | /////////////////////////////////////////////////////////////////////////////
|
---|
57 |
|
---|
58 | /**
|
---|
59 | * Returns the name of the host network interface.
|
---|
60 | *
|
---|
61 | * @returns COM status code
|
---|
62 | * @param interfaceName address of result pointer
|
---|
63 | */
|
---|
64 | STDMETHODIMP HostNetworkInterface::COMGETTER(Name) (BSTR *interfaceName)
|
---|
65 | {
|
---|
66 | if (!interfaceName)
|
---|
67 | return E_POINTER;
|
---|
68 | AutoLock lock(this);
|
---|
69 | CHECK_READY();
|
---|
70 | mInterfaceName.cloneTo(interfaceName);
|
---|
71 | return S_OK;
|
---|
72 | }
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Returns the GUID of the host network interface.
|
---|
76 | *
|
---|
77 | * @returns COM status code
|
---|
78 | * @param guid address of result pointer
|
---|
79 | */
|
---|
80 | STDMETHODIMP HostNetworkInterface::COMGETTER(Id) (GUIDPARAMOUT guid)
|
---|
81 | {
|
---|
82 | if (!guid)
|
---|
83 | return E_POINTER;
|
---|
84 | AutoLock lock(this);
|
---|
85 | CHECK_READY();
|
---|
86 | mGuid.cloneTo(guid);
|
---|
87 | return S_OK;
|
---|
88 | }
|
---|