winpcap
今天在学习winpcap 过程中出现了一点问题,在写struct bpf_program fcode;
.................................
if (pcap_compile(hander, &fcode, "ip and tcp", 1, netmask) < 0)
{
fprintf(stderr,"\nUnable to compile the packet filter. Check the syntax.\n");
pcap_freealldevs(alldevs);
return -1;
}
写到这的时候我编译连接都没有问题我就运行了一下,然后选择了要打开的网卡,然后就出现了
求指教。