Tagged Questions

2
votes
1answer
503 views

windows NDIS intermediate (IM) driver installation programmatically

I am learning windows NDIS Intermediate(IM) driver development.I am getting problem in installation . I always need to install it manually. My question is how can i do NDIS intermediate (IM) driver ...
1
vote
1answer
38 views

Windows: how to spawn threads from (NDIS) kernel driver?

Which function is recommended to spawn a new thread within NDIS5/6 context? Looking for something that is guaranteed to work at IRQL=PASSIVE (e.g. no bsods out of nothing); by a quick examination of ...
1
vote
1answer
1k views

Transparent Proxy for Windows XP

I have an experimental TCP/IP stack running under Windows XP. This stack bypasses the Windows TCP/IP stack using a LSP and a NDIS IM. I now have a requirement to provide a proxy service for this to ...
0
votes
1answer
19 views

Why does NdisFRegisterFilterDriver return NDIS_STATUS_FAILURE?

I'm trying to write an NDIS Intermediate Filter driver, but I'm stuck before anything at all happens. My code doesn't do anything yet, beyond trying to register the filter driver: NTSTATUS ...
0
votes
2answers
108 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
21 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
1answer
31 views

Is NdisGetCurrentSystemTime different from KeQuerySystemTime?

I found that MinGW Win32 compatibility layer has following definition in ndis.h: #define NdisGetCurrentSystemTime KeQuerySystemTime In WinDDK, definition is: EXPORT VOID ...
0
votes
1answer
34 views

Miniport driver's InitializeHandler is not called when disabled and enabled interface

I am writing a Ndis 6 miniport 802.11 driver for a usb based hardware. The device is working properly - in face when I install the driver it works fine. But if I disable and then enable interface from ...
0
votes
1answer
101 views

WiFi NDIS driver does not appear in the WHQL ndistest device list

I maintain an NDIS 6.0 native WiFi driver. One of my missions is passing a WHQL test. To that end I installed version 1.6 of the Windows Logo Kit. I also installed my driver on a a Windows 7, 32-bit ...
0
votes
1answer
28 views

Does debugging a netfilter service in windows belong to kernel debug?

I know that to do kernel debug I need 2 OS,the hosting OS and the target OS. but does a netfilter service(ndis filter,to be exact) belong to the kernel?
0
votes
0answers
88 views

Why is my NDIS intermediate driver clearing layer 2 priority bits

I'm writing an intermediate NDIS filter that operates between the QoS packet scheduler, and the lower-level device driver. The filter is supposed to pass traffic almost transparently through, while ...
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
100 views

Implementing a personal firewall for Windows, how can I determine what application does a packet belong to?

I am going to build a sort of personal firewall for Windows. I've found some articles on this subject on the Net, including some questions here on StackOverflow. But all they mean to control ...
0
votes
1answer
240 views

C/C++ Windows traffic blocker

I want to develop a bandwidth allocator to a network which will be behind my machine. Now, I've read about NDIS but I am not sure whether the network traffic that is neither originating from my ...
0
votes
4answers
2k views

Windows XP support for Remote NDIS

I'm looking at developing a device which will need to support Ethernet over USB (hosted in Linux, XP, and Vista). As I understand it, Vista and Linux support the industry standard USB CDC. However, in ...