Changeset 18826 in vbox for trunk/src/VBox/Main/include/NetworkAdapterImpl.h
- Timestamp:
- Apr 7, 2009 2:55:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/NetworkAdapterImpl.h
r17684 r18826 44 44 , mAttachmentType (NetworkAttachmentType_Null) 45 45 , mCableConnected (TRUE), mLineSpeed (0), mTraceEnabled (FALSE) 46 , mHostInterface ("") /* cannot be null */ 46 , mHostOnlyInterface ("") /* cannot be null */ 47 , mBridgedInterface ("") /* cannot be null */ 47 48 {} 48 49 … … 57 58 mLineSpeed == that.mLineSpeed && 58 59 mTraceEnabled == that.mTraceEnabled && 59 mHostInterface == that.mHostInterface && 60 mHostOnlyInterface == that.mHostOnlyInterface && 61 mBridgedInterface == that.mBridgedInterface && 60 62 mInternalNetwork == that.mInternalNetwork && 61 63 mNATNetwork == that.mNATNetwork); … … 71 73 BOOL mTraceEnabled; 72 74 Bstr mTraceFile; 73 Bstr mHostInterface; 75 Bstr mHostOnlyInterface; 76 Bstr mBridgedInterface; 74 77 Bstr mInternalNetwork; 75 78 Bstr mNATNetwork; … … 109 112 STDMETHOD(COMSETTER(MACAddress)) (IN_BSTR aMACAddress); 110 113 STDMETHOD(COMGETTER(AttachmentType)) (NetworkAttachmentType_T *aAttachmentType); 111 STDMETHOD(COMGETTER(HostInterface)) (BSTR *aHostInterface); 112 STDMETHOD(COMSETTER(HostInterface)) (IN_BSTR aHostInterface); 114 STDMETHOD(COMGETTER(HostOnlyInterface)) (BSTR *aHostInterface); 115 STDMETHOD(COMSETTER(HostOnlyInterface)) (IN_BSTR aHostInterface); 116 STDMETHOD(COMGETTER(BridgedInterface)) (BSTR *aHostInterface); 117 STDMETHOD(COMSETTER(BridgedInterface)) (IN_BSTR aHostInterface); 113 118 STDMETHOD(COMGETTER(InternalNetwork)) (BSTR *aInternalNetwork); 114 119 STDMETHOD(COMSETTER(InternalNetwork)) (IN_BSTR aInternalNetwork);
Note:
See TracChangeset
for help on using the changeset viewer.