You code is somehow causing the OS to jump to location zero. Validate all the parameters to NdisMEthIndicateReceive carefully. Note: your sample code uses...
Hello, Is there anyway to get channel noise value? NDIS doesn't provide any OID for querying it. Also I have checked new native WiFi API supported in Windows...
Maju, M IN BLR SISL
m.maju@...
Apr 4, 2007 12:16 pm
7864
This definitely sounds like leakage of resources. You can prove it to yourself by doing a long, slow ping (that appears successful at first) and see if...
James Grant
jgrant@...
Apr 4, 2007 7:54 pm
7865
Hi All, Is there an way to avoid heap compaction for a particular heap/executable? I just want the heap to hang on to the memory when the process is freeing...
Lookaside lists are the mechanism that is most often used for things like this. They're available in Ndis and in the kernel in general. Look at the WDK docs...
Hi every body!!! I only want to thank you for the help, I HAVE WRITE MY FIRST DRIVER!!! Now, i think i'm starting to understand all this stuff ^_^ ... LLama...
Hello, I have a TDI filter driver that spawns a popup via a service process when a process tries to send / connect to the internet ( a component of a firewall...
Hello, I hve the following code in an NT service process calling RasEnumEntries: DWORD dwCB, dwEntries ; RASENTRYNAME RasEName; RASENTRYNAME* pRasEName =...
At startup the system seems to have a lock on some databases (e.g., service control manager...), and non-system some operations simply cannot run until the...
Hello, I have a Microsoft digitally signed NDIS IM driver that installs from a location on the HDD ( suppose C:\Program Files\Kit\ ). The driver installs ok...
Hi everyone, I've written a simple intermediate driver for basic packet filtering. It seems it's working well, but now i want to add another functionality. I...
We are writing an app for Vista that needs to connect to wireless networks that supports 802.1X authentication but no encryption. The EAP Host framework that...
It's a little dangerous to have drivers in program files, isn't it? What if that drive isn't available early enough during boot? I've never tried what you...
Cristi, I think you can try remove the CopyFiles instruction from your .inf file (in the [<YourDriver>_install.NT] section). You would then have to copy your...
Zachary Azoulay
zaz0u@...
May 2, 2007 7:44 pm
7882
Did you use SetupCopyOEMInf to copy your INF? And, if you did, you need to call it TWICE: once for each of the two INFs. From:...
Bryan Burgin
bburgin@...
May 2, 2007 9:55 pm
7883
We have a security product and after instalation we want to mark certain executable files as trusted. First by checking the digital signature and if this is...
hi guys, thanks for the suggestions: I use SetupCopyOEMInf once for the protocol and once for the miniport inf. I do not use SetupUninstallOEMInf to uninstall,...
I havent checked the snetcfg utility, but the bindview sample is certainly a bit broken from that point of view: the INF files are not deleted by the...
... Great, I was missing the IPHLPAPI call (if anyone is interested, it's named "EnableRouter")! Now I have another problem... avoiding loops. I need a way to...
Can you give me an example of what kind of routing loop you're talking about here? What kind of packet transformation are you doing? If you have an IM driver,...