Reputation: 6709
I'm following examples here,
but none of them provides an example on how to modify packets(previously I used winpcap only to found that it can ONLY read packets!).
Can someone give me some clue even which function can actually modify incoming/outgoing packets??
Upvotes: 0
Views: 336
Reputation: 41213
You have to write a custom NDIS driver or use existing solutions like WinpkFilter. There are no built-in function in Windows to modify packets in the user land.
Upvotes: 1