Changeset 17608 in vbox
- Timestamp:
- Mar 10, 2009 9:52:53 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44083
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/NetworkAdapterImpl.cpp
r17387 r17608 914 914 } 915 915 else 916 if (!(attachmentNode = aAdapterNode.findKey ("HostInterface")).isNull()) 916 if (!(attachmentNode = aAdapterNode.findKey ("HostInterface")).isNull() /* backwards compatibility */ 917 || !(attachmentNode = aAdapterNode.findKey ("BridgedInterface")).isNull()) 917 918 { 918 919 /* Host Interface Networking */ … … 1036 1037 case NetworkAttachmentType_Bridged: 1037 1038 { 1038 Key attachmentNode = aAdapterNode.createKey (" HostInterface");1039 Key attachmentNode = aAdapterNode.createKey ("BridgedInterface"); 1039 1040 Assert (!mData->mHostInterface.isNull()); 1040 1041 attachmentNode.setValue <Bstr> ("name", mData->mHostInterface); -
trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd
r17359 r17608 609 609 </xsd:complexType> 610 610 </xsd:element> 611 <xsd:element name="BridgedInterface"> 612 <xsd:complexType> 613 <xsd:attribute name="name" type="xsd:string" use="required"/> 614 </xsd:complexType> 615 </xsd:element> 611 616 <xsd:element name="InternalNetwork"> 612 617 <xsd:complexType>
Note:
See TracChangeset
for help on using the changeset viewer.