BOOL __stdcall SendPacketsToMstcp ( HANDLE hOpen, PETH_M_REQUEST pPacket );
Return Value:TRUE
if call was successful, FALSE
otherwise
Parameters:hOpen
Specifies driver object open handle.pPacket
Pointer to the user allocated and initialized ETH_M_REQUEST structure.
Remarks:
The following fields of ETH_M_REQUEST must be initialized:
ETH_M_REQUEST.hAdapterHandle
must be set to the interface handle (obtained via call to GetTcpipBoundAdaptersInfo) from which you would like to simulate receive.ETH_M_REQUEST.dwPacketsNumber
must be set to the number of initializedNDISRD_ETH_Packet
structures inEthPacket
arrayETH_M_REQUEST.EthPacket[].Buffer
must point to the user allocated and initializedINTERMEDIATE_BUFFER
structure
The following fields of the INTERMEDIATE_BUFFER should be initialized:
INTERMEDIATE_BUFFER.m_IBuffer
should contain Ethernet packetINTERMEDIATE_BUFFER.m_Length
should be initialized to the actual length of the packet
This member is a wrapper for CNdisApi::SendPacketsToMstcp