Hi, I am developing Ndis Miniport driver for NIC with task offloading features. Driver is working fine in all the sense but it is not offloading tasks. ...
thank you for your responses... how about the structure comparison... I basically trying to underestand the structure so it help me in analyzing the steps...
Hi it seems that IMFILTER.H file from the cryptoping directory corrupted (crypted) :-) VC++ goes nuts... I tried to open it with NotePad and its gibberish... ...
My appology... it seems that some how I got it corrupted... wen't back unzip the original one and its fine. (it seems that something is corrupting my unzip...
Hello all Thax for the suggestions if any. The work is meant for Windows CE. Some of the questions are generic to all of Windows. Ethernet, WAN ============= ...
Hi My NIC miniport driver is getting hang in NdisMIndicateReceive. I am using KD debugger since I am new to debugger, not able to trace out the problem. ...
... <Snip...> ... I would guess that allocation of receive packet, buffer and packet data aren't right. Perhaps post a _small_ part of the code that allocates...
You can't for that matter a physical address may have 0 to N mappings to user space processes. Don Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and...
I'm investigating porting a customised embedded IPSec implementation to Windows (2k+) that uses tunnelling. After the packet has been encrypted it gains an...
i looked over internet for rfc 1323 and its applicability on XP. so far I could find articles for laarge window scaling only for 98, 2000 server or pro. Is XP...
i am having overlapped sockets and see that the low 12 bytes of the send pointer are not the same on user and kernel mode. I want to avoid TCP buffers, and...
I have intsalled the passthru driver... moved the .inf, and .dll under passthru\Bin directory and did the installation from that directory... but when I open...
Hi, I know that NdisInterlockedInsertTailList return value is a pointer to the last queue before the insert... can I return it to a PVOID and check it through...
Build a checked version of the driver, copy the debug driver over the previously installed driver and then re-boot. The debug version of the driver should...
My last reply may have been too simple-minded. If you aren't running a debugger, then system file protection will probably fetch the originally-installed...
ya, I know that I have to use windbg... and I'm using it... I was just tried to do a quick try and see if I'm able to see the trace... and I'm not able... I...
What's the best way to turn off an NDIS compatable Wifi card's radio off? Does one set the NDIS_802_11_TX_POWER_LEVEL value to 0, or what? thanks Jim Howard...
... OID_802_11_DISASSOCIATE The OID_802_11_DISASSOCIATE OID requests the miniport driver to command its NIC to disassociate from the current service set and...
it always return the same number 81921020??? why, I don't remove them at all (just doing a quick test)... I just insertToTail every time there is a packet to...
... 1.) Perhaps you should print the address of the packet that is being queued (pQueuedPacket). Remember that the same packet can be re-used over-and-over. ...
thank you for your feedback.. I try...but I wasn't thinking to not to dequeue... but just doing quick tests piece by piece... thank you ... 1.) Perhaps you...
I'll take it as a joke:-) after all we're the softer side, ehy :-) "Thomas F. Divine" <tdivine@...> wrote:Canadians... Thomas ... From: ffarsif ff Date:...
it always return the same number 81921020??? why, I don't remove them at all (just doing a quick test)... I just insertToTail every time there is a packet to...
In order to dequeu, I want to set up a timer on a thread/function to go and read my queue and if any packet exist then do a NdisSend.... Therefore I'm looking...