IOCTL_VBRIDGE_802_3_MULTICAST_LIST (Compact 2013)

10/16/2014

This I/O control message passes on the multicast addresses requested by NDIS through OID_802_3_MULTICAST_LIST. The VMINI driver calls this message with KernelIoControl.

Syntax

BOOL KernelIoControl(
    DWORD dwIoControlCode,    // use IOCTL_VBRIDGE_802_3_MULTICAST_LIST
    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_802_3_MULTICAST_LIST for this operation.
  • lpInBuffer
    [in] Points to memory location containing the list of multicast addresses to be applied to the debug Ethernet controller.
  • nInBufferSize
    Length of buffer pointed to by lpInBuffer.
  • lpOutBuffer
    Not used.
  • nOutBufferSize
    Not used.
  • lpBytesReturned
    Not used.

Return Values

None.

Requirements

Header

pkfuncs.h

See Also

Reference

VMINI IOCTLs
OEMIoControl