Changeset 29491 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin
- Timestamp:
- May 14, 2010 5:46:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r28830 r29491 1191 1191 } 1192 1192 1193 1194 void vboxNetFltPortOsNotifyMacAddress(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf, PCRTMAC pMac) 1195 { 1196 NOREF(pThis); NOREF(hIf); NOREF(pMac); 1197 } 1198 1199 1200 int vboxNetFltPortOsConnectInterface(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf) 1201 { 1202 /* Nothing to do */ 1203 NOREF(pThis); NOREF(hIf); 1204 return VINF_SUCCESS; 1205 } 1206 1207 1208 int vboxNetFltPortOsDisconnectInterface(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf) 1209 { 1210 /* Nothing to do */ 1211 NOREF(pThis); NOREF(hIf); 1212 return VINF_SUCCESS; 1213 } 1214
Note:
See TracChangeset
for help on using the changeset viewer.