- Timestamp:
- Nov 13, 2014 10:06:29 AM (10 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/VBoxNetCfg.cpp
r53090 r53318 2088 2088 } 2089 2089 2090 /* 2091 * Use the same id as does the old implementation for NDIS 5 2092 * #define VBOXNETCFGWIN_NETLWF_ID L"oracle_VBoxNetLwf" 2093 */ 2094 #define VBOXNETCFGWIN_NETLWF_ID L"sun_VBoxNetFlt" 2090 #define VBOXNETCFGWIN_NETLWF_ID L"oracle_VBoxNetLwf" 2095 2091 2096 2092 static HRESULT vboxNetCfgWinNetLwfUninstall(IN INetCfg *pNc, DWORD InfRmFlags) -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/ndis6/VBoxNetLwf.inf
r53124 r53318 2 2 ; @file 3 3 ; VBoxNetLwf.inf - VirtualBox Bridged Networking Driver inf file 4 ;5 ; Note: We use the same component id as the old NetFlt implementation6 4 ; 7 5 ; … … 32 30 33 31 [VBox] 34 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, sun_VBoxNetFlt32 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, oracle_VBoxNetLwf 35 33 36 34 [VBox.NTx86] 37 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, sun_VBoxNetFlt35 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, oracle_VBoxNetLwf 38 36 39 37 [VBox.NTamd64] 40 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, sun_VBoxNetFlt38 %VBoxNetLwf_Desc% = VBoxNetLwf.ndi, oracle_VBoxNetLwf 41 39 42 40 [VBoxNetLwf.ndi] -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r53090 r53318 498 498 499 499 #define NETLWF_INF_NAME L"VBoxNetLwf.inf" 500 #define NETLWF_ID L"sun_VBoxNetLwf" /** @todo Needs to be changed (?). */501 #define NETADP6_ID L"sun_VBoxNetAdp6" /** @todo Needs to be changed (?). */502 500 503 501 static MSIHANDLE g_hCurrentModule = NULL; … … 860 858 if (uErr == ERROR_SUCCESS) 861 859 { 862 WCHAR wszInfName[] = L"VBoxNetLwf.inf";860 WCHAR wszInfName[] = NETLWF_INF_NAME; 863 861 WCHAR wszInf[MAX_PATH]; 864 862 DWORD cchInf = RT_ELEMENTS(wszInf) - sizeof(NETLWF_INF_NAME) - 1; -
trunk/src/VBox/Main/src-server/HostImpl.cpp
r52934 r53318 671 671 hr = pNc->FindComponent(L"MS_TCPIP", &pTcpIpNcc); 672 672 # else 673 /* for the filter-based approach we get all miniports our filter (sun_VBoxNetFlt)is bound to */ 674 hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc); 673 /* for the filter-based approach we get all miniports our filter (oracle_VBoxNetLwf)is bound to */ 674 hr = pNc->FindComponent(L"oracle_VBoxNetLwf", &pTcpIpNcc); 675 if (hr != S_OK) 676 { 677 /* fall back to NDIS5 miniport lookup (sun_VBoxNetFlt) */ 678 hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc); 679 } 675 680 # ifndef VBOX_WITH_HARDENING 676 681 if (hr != S_OK) … … 736 741 else 737 742 { 738 LogRel(("failed to get the sun_VBoxNetFltcomponent, error (0x%x)\n", hr));743 LogRel(("failed to get the oracle_VBoxNetLwf(sun_VBoxNetFlt) component, error (0x%x)\n", hr)); 739 744 } 740 745 -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r53082 r53318 1481 1481 hr = pNc->FindComponent(L"MS_TCPIP", &pTcpIpNcc); 1482 1482 # else 1483 /* for the filter-based approach we get all miniports our filter (sun_VBoxNetFlt)is bound to */ 1484 hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc); 1483 /* for the filter-based approach we get all miniports our filter (oracle_VBoxNetLwf)is bound to */ 1484 hr = pNc->FindComponent(L"oracle_VBoxNetLwf", &pTcpIpNcc); 1485 if (hr != S_OK) 1486 { 1487 /* fall back to NDIS5 miniport lookup (sun_VBoxNetFlt) */ 1488 hr = pNc->FindComponent(L"sun_VBoxNetFlt", &pTcpIpNcc); 1489 } 1485 1490 # ifndef VBOX_WITH_HARDENING 1486 1491 if (hr != S_OK) … … 1571 1576 else 1572 1577 { 1573 LogRel(("failed to get the sun_VBoxNetFltcomponent, error (0x%x)\n", hr));1578 LogRel(("failed to get the oracle_VBoxNetLwf(sun_VBoxNetFlt) component, error (0x%x)\n", hr)); 1574 1579 } 1575 1580
Note:
See TracChangeset
for help on using the changeset viewer.