Centos安装libpcap


1 联网环境

yum install  libpcap

yum install libpcap-devel

2 测试 vi test.c

#include <pcap.h>
#include <stdio.h>
int main()
{
  char errBuf[PCAP_ERRBUF_SIZE], * device;
  device = pcap_lookupdev(errBuf);
  if(device)
  {
    printf("success: device: %s\n", device);
  }
  else
  {
    printf("error: %s\n", errBuf);
  }
  return 0;
}

3 编译

gcc test.c -o test -lpcap

4 运行

./test

success: device:enp0s3


参考:
https://blog.csdn.net/xygl2009/article/details/19400533


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM