views:

22

answers:

1

i like to add and build something like WIPFW but with traffic shaper option what should i learn in windows driver programing ? is there any code wrappers that can make it easier to program drivers stuff?

+1  A: 

There is winpcap library which provides APIs in the user space to get and send packets in the raw form. You can use that so that you don't have to worry about device driver programming.

Himanshu
i know it and i like to avoid it
Any particular reason to avoid it? It is good framework and leaves out all the hasseles of writing our own hook for capturing packets.
Himanshu