Hi,
I have written a virtual network adapter/Virtual miniort
driver(NDIS). I want to send the data i receive in my virtual adapter's
MiniportSend funcion across network using a network device.
Inorder to do that, the packet i have received in virtual miniport driver's
MiniportSend has to be passed to MiniportSend of miniport driver. NDIS
intermediate drivers passes the packet to the miniport driver using NdisSend.
Since the driver i have written is not an intermediate driver,NdisSend
function can not be used to send the packet to a miniport driver. NdisSend
function requires the binding handle which a virtual miniport driver can not
have. Only NDIS intermediate driver can get a binding handle which it can use
in NdisSend.
Could you let me know how can i pass the packet to the MiniportSend
of miniport driver from my MiniportSend of virtual miniport driver?
Thanks & Regards,
Senthil