Changeset 17895 in vbox for trunk/src/VBox/Main/win
- Timestamp:
- Mar 15, 2009 7:18:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/win/NetIfList-win.cpp
r17891 r17895 2426 2426 int NetIfEnableStaticIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf, ULONG ip, ULONG mask) 2427 2427 { 2428 #ifndef VBOX_WITH_NETFLT 2429 return VERR_NOT_IMPLEMENTED; 2430 #else 2428 2431 HRESULT rc; 2429 2432 GUID guid; … … 2480 2483 2481 2484 return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE; 2485 #endif 2482 2486 } 2483 2487 2484 2488 int NetIfEnableStaticIpConfigV6(VirtualBox *vBox, HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength) 2485 2489 { 2490 #ifndef VBOX_WITH_NETFLT 2491 return VERR_NOT_IMPLEMENTED; 2492 #else 2486 2493 HRESULT rc; 2487 2494 GUID guid; … … 2538 2545 2539 2546 return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE; 2547 #endif 2540 2548 } 2541 2549 2542 2550 int NetIfEnableDynamicIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf) 2543 2551 { 2552 #ifndef VBOX_WITH_NETFLT 2553 return VERR_NOT_IMPLEMENTED; 2554 #else 2544 2555 HRESULT rc; 2545 2556 GUID guid; … … 2594 2605 2595 2606 return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE; 2607 #endif 2596 2608 } 2597 2609 2598 2610 int NetIfDhcpRediscover(VirtualBox *vBox, HostNetworkInterface * pIf) 2599 2611 { 2612 #ifndef VBOX_WITH_NETFLT 2613 return VERR_NOT_IMPLEMENTED; 2614 #else 2600 2615 HRESULT rc; 2601 2616 GUID guid; … … 2650 2665 2651 2666 return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE; 2667 #endif 2652 2668 } 2653 2669
Note:
See TracChangeset
for help on using the changeset viewer.