Changeset 29662 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
- Timestamp:
- May 19, 2010 2:46:02 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r29494 r29662 360 360 * @return IPRT status code. 361 361 * @param pThis The new instance. 362 * @param pvIfData Pointer to the host-private interface data. 362 363 * @param pSG The (scatter/)gather list. 363 364 * @param fDst The destination mask. At least one bit will be set. … … 365 366 * @remarks Owns the out-bound trunk port semaphore. 366 367 */ 367 DECLHIDDEN(int) vboxNetFltPortOsXmit(PVBOXNETFLTINS pThis, PINTNETSG pSG, uint32_t fDst);368 DECLHIDDEN(int) vboxNetFltPortOsXmit(PVBOXNETFLTINS pThis, void *pvIfData, PINTNETSG pSG, uint32_t fDst); 368 369 369 370 /** … … 385 386 * 386 387 * @param pThis The instance. 387 * @param hIf The handle to the network.388 * @param pvIfData Pointer to the private interface data. 388 389 * @param pMac Pointer to the new MAC address. 389 390 */ 390 DECLHIDDEN(void) vboxNetFltPortOsNotifyMacAddress(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf, PCRTMAC pMac);391 DECLHIDDEN(void) vboxNetFltPortOsNotifyMacAddress(PVBOXNETFLTINS pThis, void *pvIfData, PCRTMAC pMac); 391 392 392 393 /** … … 395 396 * @return IPRT status code. 396 397 * @param pThis The instance. 397 * @param hIf The handle to the network. 398 */ 399 DECLHIDDEN(int) vboxNetFltPortOsConnectInterface(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf); 398 * @param pvIf Pointer to the interface. 399 * @param ppvIfData Where to store the private interface data. 400 */ 401 DECLHIDDEN(int) vboxNetFltPortOsConnectInterface(PVBOXNETFLTINS pThis, void *pvIf, void **ppvIfData); 400 402 401 403 /** … … 403 405 * 404 406 * @param pThis The instance. 405 * @param hIf The handle to the network.406 */ 407 DECLHIDDEN(int) vboxNetFltPortOsDisconnectInterface(PVBOXNETFLTINS pThis, INTNETIFHANDLE hIf);407 * @param pvIfData Pointer to the private interface data. 408 */ 409 DECLHIDDEN(int) vboxNetFltPortOsDisconnectInterface(PVBOXNETFLTINS pThis, void *pvIfData); 408 410 409 411 /**
Note:
See TracChangeset
for help on using the changeset viewer.