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