Running Wireshark, before selecting the right interface, I can see packet transitions on all interfaces, by means of flashing numbers. Since I use WinPcap library I'd like to mimic that in my C++ program. Can someone direct me how to do that? Regards I. Lesher asked 05 Sep '12, 23:42 triplebit |
One Answer:
That's done with pcap_stats in dumpcap:print_statistics_loop(). Please check the WinPcap developer docs for more information. Google will also help: 'pcap_stats sample code' Regards answered 06 Sep '12, 02:03 Kurt Knochner ♦ edited 06 Sep '12, 02:03 |