Tagged Questions

2
votes
1answer
2k views

NDIS Intermediate driver interface to C#

I'm developing what is essentially a specialized firewall application. The solution needs to be 32 and 64-bit compatible. My company wants to keep the current program interface, which is written in ...
1
vote
1answer
140 views

How to use NDIS protocol driver?

I write a NDIS protocol driver. I can register my protocol with NdisRegisterProtocol. How does the application typically access this driver? Is there a way to uses windows sockets or do I need to ...
0
votes
2answers
99 views

NDIS 5/6 intermediate filter driver

Background: I need to create an NDIS filter intermediate driver. This driver will pass all traffic while collecting metadata (primarily timing information). The driver will export this information to ...
0
votes
0answers
19 views

WMM with windows 7

I am developing a 802.11 NDIS 6 miniport driver. My hardware has four tx queue for different type of packet - BE, BK, VI, VO. So to implement that from the SendNetBufferList function I have determined ...
0
votes
0answers
271 views

DummyNet error NDIS drivers install on Windows 7 x64

I've download the current version of DummyNet and according to readme I'm following these steps: Windows: INSTALL THE NDIS DRIVER open the configuration panel for the network card in use ...
0
votes
1answer
57 views

NDIS 5/6 driver with tcp/ip stack, is there code?

I'm trying to write a windows kernel driver which requires tcp/ip communication using NDIS 5/6. Since it will use NDIS, as I understand it, it needs it's own tcp/ip stack implementation. Could anyone ...
0
votes
1answer
85 views

Does a ndis filter driver belong to NT driver or WDM driver?

NT driver doesn't support plugin and play. Does ndis filter belong to NT driver or WDM driver?
0
votes
0answers
42 views

How do I assemble my own NET_BUFFER

How do I assemble new NET_BUFFER from raw memory, which is includes all need stuff as ethernet header, ip header, payload, etc?
0
votes
1answer
72 views

What could cause “The MDL is being inserted twice on the same process list”?

We are developing an NDIS protocol and miniport driver. When the driver is in-use and the system hibernates we get a bug check (blue screen) with the following error: LOCKED_PAGES_TRACKER_CORRUPTION ...
0
votes
1answer
333 views

Using the ndisprot example driver (in the WDK) with C++

Hey all, I have compiled succesfully the ndisprot example ndis driver that came with the Windows Driver Kit, but I don't know how to use it from C++ to send or receive packets. Could someone instruct ...