How do I stop the capture using winpcap?
Posted
by httpinterpret
on Stack Overflow
See other posts from Stack Overflow
or by httpinterpret
Published on 2010-05-08T05:28:50Z
Indexed on
2010/05/08
5:38 UTC
Read the original article
Hit count: 359
/* start the capture */
pcap_loop(adhandle, 0, packet_handler, NULL);
The above starts the capture,but I don't find a way to stop the capture except exit the programe...
© Stack Overflow or respective owner