Changeset 47869 in vbox
- Timestamp:
- Aug 20, 2013 5:15:15 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88166
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r47868 r47869 1392 1392 <!-- This is experimental interface to LWIP based NAT server --> 1393 1393 <interface name="INATNetwork" extends="$unknown" 1394 uuid=" 448ea897-0ce9-4362-a07e-9ab7833afc33"1394 uuid="a63c75da-4c99-4e9d-8351-eb73651c18cc" 1395 1395 wsmap="managed"> 1396 1396 <attribute name="networkName" type="wstring"> … … 1450 1450 <param name="offset" type="long" dir="in"/> 1451 1451 </method> 1452 1453 <attribute name="loopbackIp6" type="long"> 1454 <desc>Offset in ipv6 network from network id for address mapped into loopback6 interface of the host. 1455 </desc> 1456 </attribute> 1452 1457 1453 1458 <attribute name="portForwardRules6" type="wstring" readonly="yes" safearray="yes"> -
trunk/src/VBox/Main/include/NATNetworkImpl.h
r47867 r47869 110 110 STDMETHOD(AddLocalMapping)(IN_BSTR aHostId, LONG aOffset); 111 111 112 STDMETHOD(COMGETTER(LoopbackIp6))(LONG *aLoopbackIp6); 113 STDMETHOD(COMSETTER(LoopbackIp6))(LONG aLoopbackIp6); 114 112 115 STDMETHOD(COMGETTER(PortForwardRules4))(ComSafeArrayOut(BSTR, aPortForwardRules4)); 113 116 STDMETHOD(COMGETTER(PortForwardRules6))(ComSafeArrayOut(BSTR, aPortForwardRules6)); -
trunk/src/VBox/Main/src-server/NATNetworkImpl.cpp
r47867 r47869 482 482 483 483 STDMETHODIMP NATNetwork::AddLocalMapping(IN_BSTR aHostId, LONG aOffset) 484 { 485 return E_NOTIMPL; 486 } 487 488 STDMETHODIMP NATNetwork::COMGETTER(LoopbackIp6)(LONG *aLoopbackIp6) 489 { 490 return E_NOTIMPL; 491 } 492 493 STDMETHODIMP NATNetwork::COMSETTER(LoopbackIp6)(LONG aLoopbackIp6) 484 494 { 485 495 return E_NOTIMPL;
Note:
See TracChangeset
for help on using the changeset viewer.