Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I inject any packet via WinPcap it will be captured in this moment. I dont want to capture packets, witch were injected myself. What is the easiest way?

share|improve this question
Solved... Read more about PCAP_OPENFLAG_NOCAPTURE_RPCAP flag... – k06a Mar 30 '11 at 20:51
And with crc32 sum ... – k06a Mar 30 '11 at 20:54

2 Answers

You could perhaps use a capture filter (pcap_setfilter()) and filter out packets by their source MAC address.

That may not be exactly what you want though, because MAC addresses can be spoofed, you might want to see outgoing packets from other sources on your machine, etc.

The only other thing I can think of would be to compute a hash value of each packet you send, and discard any captured packet with the same hash value.

There's got to be a better way…

share|improve this answer
up vote 1 down vote accepted

The best way is to use PCAP_OPENFLAG_NOCAPTURE_RPCAP flag..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.