In order to sniff from multiple interfaces using pcap, I would do the following (in pseudocode):
foreach interface:
open a file descriptor using pcap_open_live()
set the file descriptor to non-blocking
while true:
check for a ready file descriptor using select() or an equivalent I/O multiplexer
read data from every ready file descriptor using pcap_dispatch()
handle EndOfStream or Errors and break out of loop if needed
Is this enough or are there some particular caveats to take into account ?