欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Unable to locate package libpcap 解决

程序员文章站 2022-07-14 15:33:51
...

安装指定版本

apt-get install libpcap-dev

测试程序

gcc -o test ./test.c -lpcap
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pcap/pcap.h>
int main(int argc,char *argv[]){
char *dev, errbuf[PCAP_ERRBUF_SIZE];
dev=pcap_lookupdev(errbuf);
if(dev==NULL){
fprintf(stderr,"couldn't find default device: %s\n",errbuf);
return(2);
}
printf("Device: %s\n",dev);
return(0);
}

整理自http://blog.csdn.net/fengyun1989/article/details/7384899

相关标签: 网络安全技术