#include <stdio.h>
#include <stdlib.h>
#include <pcap.h> /* GIMME a libpcap plz! */
#include <errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
void callback(u_char *useless,const struct pcap_pkthdr* pkthdr,const u_char* packet)
{
static int count = 1;
printf("\nPacket number [%d], length of this packet is: %d\n", count++, pkthdr->len);
}
void pktinit(char *dev) /*function: for individual interface packet capturing*/
{
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t* descr;
struct bpf_program fp; /* to hold compiled program */
bpf_u_int32 pMask; /* subnet mask */
bpf_u_int32 pNet; /* ip address*/
pcap_if_t *alldevs, *d;
char dev_buff[64] = {0};
int i =0;
pcap_lookupnet(dev, &pNet, &pMask, errbuf);
descr = pcap_open_live(dev, BUFSIZ, 0,-1, errbuf);
if(descr == NULL)
{
printf("pcap_open_live() failed due to [%s]\n", errbuf);
return -1;
}
return 0;
}
int main(int argc, char **argv)
{
int pid,i;
if(argc < 2) /*command <eth0> [eth1]...*/
{
fprintf(strerr,"command needs ethernet name")
return 0;
}
for(i = 1; i < argc; i++)
{
if((pid=fork()) != -1)
{
pktinit(argv[i])
}
else
{
fprintf(stderr,"pacp failed for: %s\n", argv[i]);
}
}
return 0;
}
gcc file.c -lpcap
. / File eth0 eth1 wlan0