IOCTL_VBRIDGE_CURRENT_PACKET_FILTER (Compact 2013)

10/16/2014

This I/O control message passes on the filter setting requested by NDIS through OID_GEN_CURRENT_PACKET_FILTER. The VMINI driver calls this message with KernelIoControl.

Syntax

BOOL KernelIoControl(
    DWORD dwIoControlCode,    // use IOCTL_VBRIDGE_CURRENT_PACKET_FILTER
    LPVOID lpInBuffer,        // pointer to input buffer
    DWORD nInBufferSize,      // input buffer size
    LPVOID lpOutBuffer,       // pointer to output buffer
    DWORD nOutBufferSize,     // output buffer size
    LPDWORD lpBytesReturned  // number of bytes returned
);

Parameters

  • dwIoControlCode
    [in] Control code for the operation. Use IOCTL_VBRIDGE_CURRENT_PACKET_FILTER for this operation.
  • lpInBuffer
    [in] Points to a DWORD size memory containing the filter setting to be applied to the debug Ethernet controller.
  • nInBufferSize
    Not used, assuming lpInBuffer points to at least 4 bytes of memory.
  • lpOutBuffer
    Not used.
  • nOutBufferSize
    Not used.
  • lpBytesReturned
    Not used.

Return Values

None.

Requirements

Header

pkfuncs.h

See Also

Reference

VMINI IOCTLs
OEMIoControl