Changeset 17711 in vbox
- Timestamp:
- Mar 11, 2009 4:53:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r17709 r17711 40 40 args[4] = pszMask; 41 41 } 42 42 43 43 char szAdpCtl[RTPATH_MAX]; 44 44 int rc = RTPathProgram(szAdpCtl, sizeof(szAdpCtl) - sizeof("/" VBOXNETADPCTL_NAME)); … … 57 57 return VERR_FILE_NOT_FOUND; 58 58 } 59 59 60 60 RTPROCESS pid; 61 61 rc = RTProcCreate(VBOXNETADPCTL_NAME, args, RTENV_DEFAULT, 0, &pid); … … 72 72 } 73 73 74 int NetIfEnableStaticIpConfig( HostNetworkInterface * pIf, ULONG ip, ULONG mask)74 int NetIfEnableStaticIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf, ULONG ip, ULONG mask) 75 75 { 76 76 char szAddress[16]; /* 4*3 + 3*1 + 1 */ … … 85 85 } 86 86 87 int NetIfEnableStaticIpConfigV6( HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength)87 int NetIfEnableStaticIpConfigV6(VirtualBox *vBox, HostNetworkInterface * pIf, IN_BSTR aIPV6Address, ULONG aIPV6MaskPrefixLength) 88 88 { 89 89 return VERR_NOT_IMPLEMENTED; 90 90 } 91 91 92 int NetIfEnableDynamicIpConfig( HostNetworkInterface * pIf)92 int NetIfEnableDynamicIpConfig(VirtualBox *vBox, HostNetworkInterface * pIf) 93 93 { 94 94 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.