Changeset 17275 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Mar 3, 2009 1:28:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r17273 r17275 6364 6364 6365 6365 <enum 6366 name="HostNetworkInterface Type"6367 uuid=" 763754FA-3246-4539-9590-9E603EDBF706"6366 name="HostNetworkInterfaceMediumType" 6367 uuid="1aa54aaf-2497-45a2-bfb1-8eb225e93d5b" 6368 6368 > 6369 6369 <desc> … … 6421 6421 </enum> 6422 6422 6423 <enum 6424 name="HostNetworkInterfaceType" 6425 uuid="4cd97025-b31b-430b-98dd-211e85cf389f" 6426 > 6427 <desc> 6428 Network interface type. 6429 </desc> 6430 <const name="Bridged" value="1"/> 6431 <const name="HostOnly" value="2"/> 6432 </enum> 6433 6423 6434 <interface 6424 6435 name="IHostNetworkInterface" extends="$unknown" 6425 uuid=" 4fc2445f-fb73-4f55-b3b4-ecee47c7077b"6436 uuid="c312bf73-b353-4add-9db7-481b891ec08c" 6426 6437 wsmap="managed" 6427 6438 > … … 6460 6471 </attribute> 6461 6472 6462 <attribute name=" type" type="HostNetworkInterfaceType" readonly="yes">6473 <attribute name="mediumType" type="HostNetworkInterfaceMediumType" readonly="yes"> 6463 6474 <desc>Type of protocol encapsulation used.</desc> 6464 6475 </attribute> … … 6468 6479 </attribute> 6469 6480 6470 <attribute name="real" type="boolean" readonly="yes"> 6471 <desc>True if this is a real interface false 6472 if this is a Virtualbox Host Adapter interface.</desc> 6481 <attribute name="interfaceType" type="HostNetworkInterfaceType" readonly="yes"> 6482 <desc>specifies the host interface type.</desc> 6473 6483 </attribute> 6474 6484 </interface> … … 6476 6486 <interface 6477 6487 name="IHost" extends="$unknown" 6478 uuid=" 234a43b3-66a5-4f15-a2a5-c46dbf4c4508"6488 uuid="96128709-69b5-43cc-9393-b3895f3b866a" 6479 6489 wsmap="managed" 6480 6490 > … … 6624 6634 6625 6635 <if target="midl"> 6626 <method name="createHost NetworkInterface">6627 <desc> 6628 Creates a new adapter for Host InterfaceNetworking.6636 <method name="createHostOnlyNetworkInterface"> 6637 <desc> 6638 Creates a new adapter for Host Only Networking. 6629 6639 <result name="E_INVALIDARG"> 6630 6640 Host network interface @a name already exists. … … 6647 6657 </param> 6648 6658 </method> 6649 <method name="removeHost NetworkInterface">6650 <desc> 6651 Removes the given host networkinterface.6659 <method name="removeHostOnlyNetworkInterface"> 6660 <desc> 6661 Removes the given Host Only Networking interface. 6652 6662 <result name="VBOX_E_OBJECT_NOT_FOUND"> 6653 6663 No host network interface matching @a id found. … … 6830 6840 <param name="networkInterface" type="IHostNetworkInterface" dir="return"> 6831 6841 <desc>Found host network interface object.</desc> 6842 </param> 6843 </method> 6844 <method name="findHostNetworkInterfacesOfType"> 6845 <desc> 6846 Searches through all host network interfaces and returns a list of interfaces of the specified type 6847 </desc> 6848 <param name="type" type="HostNetworkInterfaceType" dir="in"> 6849 <desc>type of the host network interfaces to search for.</desc> 6850 </param> 6851 <param name="networkInterfaces" type="IHostNetworkInterface" safearray="yes" dir="return"> 6852 <desc>Found host network interface objects.</desc> 6832 6853 </param> 6833 6854 </method> … … 10290 10311 <enum 10291 10312 name="NetworkAttachmentType" 10292 uuid=" 64e770dc-dd1d-4879-9f12-5bd6bc879b78"10313 uuid="44bce1ee-99f7-4e8e-89fc-80597fd9eeaf" 10293 10314 > 10294 10315 <desc> … … 10300 10321 </const> 10301 10322 <const name="NAT" value="1"/> 10302 <const name=" HostInterface"value="2"/>10323 <const name="Bridged" value="2"/> 10303 10324 <const name="Internal" value="3"/> 10304 10325 <const name="HostOnly" value="4"/> … … 10324 10345 <interface 10325 10346 name="INetworkAdapter" extends="$unknown" 10326 uuid=" 4a1ee64e-6c5f-47dd-acfa-f834d7cb74fb"10347 uuid="8eca30de-a883-40ee-b856-aac86f1ec383" 10327 10348 wsmap="managed" 10328 10349 > … … 10412 10433 </method> 10413 10434 10414 <method name="attachTo HostInterface">10415 <desc> 10416 Attach the network adapter to a host interface.10435 <method name="attachToBridgedNetwork"> 10436 <desc> 10437 Attach the network adapter to a bridged host interface. 10417 10438 </desc> 10418 10439 </method>
Note:
See TracChangeset
for help on using the changeset viewer.