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

相关文章:

  • 2021-10-25
  • 2022-12-23
  • 2022-02-11
  • 2022-12-23
  • 2021-04-13
  • 2021-06-20
  • 2021-11-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-12-31
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
相关资源
相似解决方案