I am capturing IEEE802.11 packets with the pcap library. As yet i used pcap_loop and a callback function for receiving and then processing the packets. But now I have switch the wifi channel the device is listening on periodically. Unfortunately, pcap_loop is blocking so I can't call my function using a timeout. Then I read about pcap_dispatch, but I don't really know how that should work asynchronous, because doing something like
while(1) {
int cnt = pcap_dispatch(handle, -1, callback, null);
}
wouldn't solve a thing.
So can anyone explain to me how to make pcap capture packets asynchronous / event based or in other words how to solve my dilemma?
To quote the
pcap_get_selectable_fd()
man page (this is the version from the trunk):In addition, the workaround won't work on Mac OS X 10.6, due to a bug in 10.6's BPF (introduced as part of a fix to another bug); the workaround will work on 10.7 and later, but isn't necessary.
So you could make it event-based if you have a
select()
/poll()
/epoll()
/kqueue/etc.-based event loop - add the descriptor you get frompcap_get_selectable_fd()
as one of the file descriptors selected on in that event loop.