Hi.
I am trying to write an NDIS driver. I have followed the NDIS sample from
%_WINCEROOT%\Public\Common\Oak\Drivers\Netcard\NE2000.
I manage to receive packets in MiniportSend, but I only receive a packet
with one buffer, no matter the size of the data I am sending (I am sending an
UDP packet). The packet received contains the source ip address and
destination ip address (and a few more things), but I can't find the data I
am sending, the length of the buffer is always 0x2a. Is this normal, is the
data stored somewhere else?
Here is the data I am receiving.
0003EF80 FF FF FF FF FF FF 00 00
0003EF88 AC 10 5A 97 08 06 00 01
0003EF90 08 00 06 04 00 01 00 00
0003EF98 AC 10 5A 97 AC 10 5A 97
0003EFA0 00 00 00 00 00 00 AC 10
0003EFA8 65 2C
Source IP â?? AC 10 5A 97
Destination IP - AC 10 65 2C
Thanks in advanced.