fixed gcc warnings and some pointer issues thanks to hunz
[my-code/hdw-sniff.git] / hdw-sniff.h
1 /* the pcap_process callback function */
2 void pcap_process(u_char *count,const struct pcap_pkthdr *pcap_header,
3                         const u_char *package);
4
5 /* info struct */
6 struct info_struct {
7                 int count;      /* count packages */
8                 char dev[10];   /* device */
9                 char mmode;     /* monitor type ... and later more */
10         };