Changeset 27898 in vbox for trunk/src/VBox/Main/idl/VirtualBox.xidl
- Timestamp:
- Mar 31, 2010 2:05:14 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59587
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r27885 r27898 3220 3220 <li>On the new object, call <link to="#read" /> with the full path of the OVF file you 3221 3221 would like to import. So long as this file is syntactically valid, this will succeed 3222 and return an instance of IAppliance that containsthe parsed data from the OVF file.3222 and fill the appliance object with the parsed data from the OVF file. 3223 3223 </li> 3224 3224 … … 11640 11640 <attribute name="natDriver" type="INATEngine" readonly="yes"> 11641 11641 <desc> 11642 Instance of INATEngine allowing NAT network configuration. Active only when 11643 attach to NAT is happend. 11642 Points to the NAT engine which handles the network address translation 11643 for this interface. This is active only when the interface actually uses 11644 NAT (see <link to="#attachToNAT" />). 11644 11645 </desc> 11645 11646 </attribute> … … 14010 14011 uuid="e90164be-eb03-11de-94af-fff9b1c1b19f" 14011 14012 > 14012 <desc>Protocol s definitions are used for registering port-forwardrules.</desc>14013 <desc>Protocol definitions used with NAT port-forwarding rules.</desc> 14013 14014 <const name="UDP" value="0"> 14014 <desc> port-forwarding uses UDP protocol.</desc>14015 <desc>Port-forwarding uses UDP protocol.</desc> 14015 14016 </const> 14016 14017 <const name="TCP" value="1"> 14017 <desc> port-forwarding uses TCP protocol.</desc>14018 <desc>Port-forwarding uses TCP protocol.</desc> 14018 14019 </const> 14019 14020 </enum> … … 14024 14025 wsmap="managed" 14025 14026 > 14026 <desc>Interface for managing NAT engine: changing attributes and port-forwarding rules.</desc> 14027 <desc>Interface for managing a NAT engine which is used with a virtual machine. This allows for changing 14028 NAT behavior such as port-forwarding rules. This interface is used in the <link to="INetworkAdapter::natDriver" /> attribute.</desc> 14027 14029 <attribute name="network" type="wstring"> 14028 <desc> Defines network attribute of NAT engine (the same value used with built-in dhcpserver to fill corresponding fields of DHCP leases).</desc>14030 <desc>The network attribute of the NAT engine (the same value used with built-in DHCP server to fill corresponding fields of DHCP leases).</desc> 14029 14031 </attribute> 14030 14032 <attribute name="hostIP" type="wstring"> 14031 <desc>IP of host interface where to bind all opened sockets 14032 <note> 14033 Note: it doesn't change binding of port forwarding. 14034 </note> 14033 <desc>IP of host interface to bind all opened sockets to. 14034 <note>Changing this does not change binding of port forwarding.</note> 14035 14035 </desc> 14036 14036 </attribute> 14037 14037 <attribute name="tftpPrefix" type="wstring"> 14038 <desc>TFTP prefix attribute which used withbuilt-in DHCP server to fill corresponding fields of DHCP leases.</desc>14038 <desc>TFTP prefix attribute which is used with the built-in DHCP server to fill corresponding fields of DHCP leases.</desc> 14039 14039 </attribute> 14040 14040 <attribute name="tftpBootFile" type="wstring"> 14041 <desc>TFTP boot file attribute which used withbuilt-in DHCP server to fill corresponding fields of DHCP leases.</desc>14041 <desc>TFTP boot file attribute which is used with the built-in DHCP server to fill corresponding fields of DHCP leases.</desc> 14042 14042 </attribute> 14043 14043 <attribute name="tftpNextServer" type="wstring"> 14044 <desc>TFTP server attribute which used with built-in DHCP server to fill corresponding fields of DHCP leases. 14045 <note> 14046 Note: prefered form is IPv4 address. 14047 </note> 14044 <desc>TFTP server attribute which is used with the built-in DHCP server to fill corresponding fields of DHCP leases. 14045 <note>The preferred form is IPv4 addresses.</note> 14048 14046 </desc> 14049 14047 </attribute> 14050 14048 <attribute name="dnsPassDomain" type="boolean"> 14051 <desc> Attribute controls DHCP server behavior to pass or not DNS domain used byhost.</desc>14049 <desc>Whether the DHCP server should pass the DNS domain used by the host.</desc> 14052 14050 </attribute> 14053 14051 <attribute name="dnsProxy" type="boolean"> 14054 <desc> Attribute controls DHCP server behavior and handling DNS traffic by NAT: to pass or not address of DNS proxy and process traffic using14055 DNS servers registerd on host.</desc>14052 <desc>Whether the DHCP server (and the DNS traffic by NAT) should pass the address of the DNS proxy and process traffic using 14053 DNS servers registerd on the host.</desc> 14056 14054 </attribute> 14057 14055 <attribute name="dnsUseHostResolver" type="boolean"> 14058 <desc> Attribute controls DHCP server behavior and handling DNS traffic by NAT: to pass or not address of DNS proxy and process traffic using14059 host resolver mechanism.</desc>14056 <desc>Whether the DHCP server (and the DNS traffic by NAT) should pass the address of the DNS proxy and process traffic using 14057 the host resolver mechanism.</desc> 14060 14058 </attribute> 14061 14059 <attribute name="redirects" type="wstring" readonly="yes" safearray="yes"> 14062 <desc>Array of port-forwarding rules in string representaion offollowing format: "name,protocol id,host ip,host port,guest ip,guest port".</desc>14060 <desc>Array of NAT port-forwarding rules in string representation, in the following format: "name,protocol id,host ip,host port,guest ip,guest port".</desc> 14063 14061 </attribute> 14064 14062 <method name="setNetworkSettings"> 14065 <desc>Sets network configuration of NAT engine.</desc>14063 <desc>Sets network configuration of the NAT engine.</desc> 14066 14064 <param name="mtu" type="unsigned long" dir="in"> 14067 <desc> Sets MTU ofNAT engine.</desc>14065 <desc>MTU of the NAT engine.</desc> 14068 14066 </param> 14069 14067 <param name="sockSnd" type="unsigned long" dir="in"> 14070 <desc> Sets capacity of send buffer of socket used while creatingnew socket.</desc>14068 <desc>Capacity of the socket send buffer when creating a new socket.</desc> 14071 14069 </param> 14072 14070 <param name="sockRcv" type="unsigned long" dir="in"> 14073 <desc> Sets capacity of receive buffer of socket used while creatingnew socket.</desc>14071 <desc>Capacity of the socket receive buffer when creating a new socket.</desc> 14074 14072 </param> 14075 14073 <param name="TcpWndSnd" type="unsigned long" dir="in"> 14076 <desc> Sets initial size of sending tcp window used with NAT engine while establishingnew TCP connection.</desc>14074 <desc>Initial size of the NAT engine's sending TCP window when establishing a new TCP connection.</desc> 14077 14075 </param> 14078 14076 <param name="TcpWndRcv" type="unsigned long" dir="in"> 14079 <desc> Sets initial size of receiving tcp window used with NAT engine while establishingnew TCP connection.</desc>14077 <desc>Initial size of the NAT engine's receiving TCP window when establishing a new TCP connection.</desc> 14080 14078 </param> 14081 14079 </method> 14082 14080 <method name="getNetworkSettings"> 14083 <desc>Returns network configuration of NAT engine.</desc> 14084 <param name="mtu" type="unsigned long" dir="out"> 14085 <desc>Returns MTU of NAT engine.</desc> 14086 </param> 14087 <param name="sockSnd" type="unsigned long" dir="out"> 14088 <desc>Returns capacity of send buffer of socket used while creating new socket.</desc> 14089 </param> 14090 <param name="sockRcv" type="unsigned long" dir="out"> 14091 <desc>Returns capacity of receive buffer of socket used while creating new socket.</desc> 14092 </param> 14093 <param name="TcpWndSnd" type="unsigned long" dir="out"> 14094 <desc>Returns initial size of sending tcp window used with NAT engine while establishing new TCP connection.</desc> 14095 </param> 14096 <param name="TcpWndRcv" type="unsigned long" dir="out"> 14097 <desc>Returns initial size of receiving tcp window used with NAT engine while establishing new TCP connection.</desc> 14098 </param> 14081 <desc>Returns network configuration of NAT engine. See <link to="#setNetworkSettings" /> for parameter descriptions.</desc> 14082 <param name="mtu" type="unsigned long" dir="out" /> 14083 <param name="sockSnd" type="unsigned long" dir="out" /> 14084 <param name="sockRcv" type="unsigned long" dir="out" /> 14085 <param name="TcpWndSnd" type="unsigned long" dir="out" /> 14086 <param name="TcpWndRcv" type="unsigned long" dir="out" /> 14099 14087 </method> 14100 14088 <method name="addRedirect"> 14101 <desc>Adds port-forwarding rule.</desc>14089 <desc>Adds a new NAT port-forwarding rule.</desc> 14102 14090 <param name="name" type="wstring" dir="in"> 14103 <desc>Name of the rule. 14104 <note>Empty name is acceptable. In case of empty name NAT engine generates new name using rest of parameters.</note> 14105 </desc> 14091 <desc>The name of the rule. An empty name is acceptable, in which case the NAT engine auto-generates one using the other parameters.</desc> 14106 14092 </param> 14107 14093 <param name="proto" type="NATProtocol" dir="in"> 14108 <desc>Protocol handled with rule.</desc>14094 <desc>Protocol handled with the rule.</desc> 14109 14095 </param> 14110 14096 <param name="hostIp" type="wstring" dir="in"> 14111 <desc>IP of host interface which handled handled with rule. 14112 <note> 14113 Empty ip address is acceptable. In case of empty address NAT engine binds handling socket to any interface. 14114 </note> 14115 </desc> 14097 <desc>IP of the host interface to which the rule should apply. An empty ip address is acceptable, in which case the NAT engine binds the handling socket to any interface.</desc> 14116 14098 </param> 14117 14099 <param name="hostPort" type="unsigned short" dir="in"> 14118 <desc> Port number to listen on.</desc>14100 <desc>The port number to listen on.</desc> 14119 14101 </param> 14120 14102 <param name="guestIp" type="wstring" dir="in"> 14121 <desc>IP address of the guest where NAT engine will forward packets which have met rule requirement. 14122 <note> 14123 Empty IP address is acceptable. In case of empty IP NAT engine will forward packets to the first DHCP lease (x.x.x.15). 14124 </note> 14125 </desc> 14103 <desc>The IP address of the guest which the NAT engine will forward matching packets to. An empty IP address is acceptable, in which case the NAT engine will forward packets to the first DHCP lease (x.x.x.15).</desc> 14126 14104 </param> 14127 14105 <param name="guestPort" type="unsigned short" dir="in"> 14128 <desc> Port number to forward.</desc>14106 <desc>The port number to forward.</desc> 14129 14107 </param> 14130 14108 </method> 14131 14109 <method name="removeRedirect"> 14132 <desc>Removes registered port forwarding.</desc>14110 <desc>Removes a port-forwarding rule that was previously registered.</desc> 14133 14111 <param name="name" type="wstring" dir="in"> 14134 <desc> Name of the rule to delete.</desc>14112 <desc>The name of the rule to delete.</desc> 14135 14113 </param> 14136 14114 </method>
Note:
See TracChangeset
for help on using the changeset viewer.