1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| #include <pcap.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char **argv )
{
char interface[50] ;
int retourLookupnet ;
pcap_t* retourOpenlive ;
bpf_u_int32 * netaddr ;
bpf_u_int32 * netmask ;
char bufferErreur[100] ;
strcpy(interface, argv[1]) ;
printf("Nom de l'interface choisie = %s \n", interface) ;
//retourLookupnet = pcap_lookupnet(interface, netaddr, netmask, bufferErreur) ;
retourOpenlive = pcap_open_live(interface,1514,1,1000,bufferErreur) ;
return 1 ; |