VirtualBox

Changeset 17895 in vbox for trunk/src/VBox/Main/win


Ignore:
Timestamp:
Mar 15, 2009 7:18:07 PM (16 years ago)
Author:
vboxsync
Message:

OSE fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/win/NetIfList-win.cpp

    r17891 r17895  
    24262426int NetIfEnableStaticIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf, ULONG ip, ULONG mask)
    24272427{
     2428#ifndef VBOX_WITH_NETFLT
     2429    return VERR_NOT_IMPLEMENTED;
     2430#else
    24282431    HRESULT rc;
    24292432    GUID guid;
     
    24802483
    24812484    return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE;
     2485#endif
    24822486}
    24832487
    24842488int NetIfEnableStaticIpConfigV6(VirtualBox *vBox, HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength)
    24852489{
     2490#ifndef VBOX_WITH_NETFLT
     2491    return VERR_NOT_IMPLEMENTED;
     2492#else
    24862493    HRESULT rc;
    24872494    GUID guid;
     
    25382545
    25392546    return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE;
     2547#endif
    25402548}
    25412549
    25422550int NetIfEnableDynamicIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf)
    25432551{
     2552#ifndef VBOX_WITH_NETFLT
     2553    return VERR_NOT_IMPLEMENTED;
     2554#else
    25442555    HRESULT rc;
    25452556    GUID guid;
     
    25942605
    25952606    return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE;
     2607#endif
    25962608}
    25972609
    25982610int NetIfDhcpRediscover(VirtualBox *vBox, HostNetworkInterface * pIf)
    25992611{
     2612#ifndef VBOX_WITH_NETFLT
     2613    return VERR_NOT_IMPLEMENTED;
     2614#else
    26002615    HRESULT rc;
    26012616    GUID guid;
     
    26502665
    26512666    return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE;
     2667#endif
    26522668}
    26532669
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette