开发者

How to use pcap_breakloop?

开发者 https://www.devze.com 2022-12-22 01:29 出处:网络
I have a pcap_loop function in another function, that captures packets until the user stops it, i.e. void functionA()

I have a pcap_loop function in another function, that captures packets until the user stops it, i.e.

void functionA()
{
   signal(SIGINT, terminate_process); 
   pcap_loop(handle, -1, callback, NULL);
   ...

}

void terminate_process(int signum)
{
   pcap_breakloop(handle);
   pcap_close(handle);
} 

Is it possible to set a duration for when packets would be captured? Something like:

if (time(NULL) - start_time > 100)
   pcap_breakloop(handle);

But I don't know where to put this, because so far all the examples I've seen used pcap_breakloop in a signal handler, which requires user intervention. How will the time condition be checked while pcap_loop is running?

Thank you.

Regard开发者_开发技巧s, Rayne


You can use alarm to generate a signal after a given number of seconds:

void functionA()
{
    signal(SIGALRM, terminate_process); 
    alarm(100);
}
0

精彩评论

暂无评论...
验证码 换一张
取 消