46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
#include "net_task_thread.h"
|
|
|
|
void *net_task(void *arg)
|
|
{
|
|
printf("net_task\n");
|
|
|
|
char *dev1 = "ens33"; // 第一个网卡
|
|
char *dev2 = "ens38"; // 第二个网卡
|
|
|
|
// 打开网卡设备
|
|
open_device(&device1, dev1);
|
|
open_device(&device2, dev2);
|
|
|
|
// 开始捕获数据包:
|
|
// pcap_loop: 网卡设备、捕获的数据包个数、回调函数、传递给回调函数的参数
|
|
pcap_loop(device1, -1, process_packet, NULL); // -1 表示无限循环
|
|
pcap_loop(device2, -1, process_packet, NULL); // -1 表示无限循环
|
|
|
|
return NULL;
|
|
}
|
|
|
|
// 打开网卡设备
|
|
void open_device(pcap_t **device, char *dev_name)
|
|
{
|
|
// 打开网卡设备: 设备名、最大字节数、混杂模式、超时时间、错误信息缓冲区
|
|
*device = pcap_open_live(dev_name, MAX_BYTE, 1, 512, errbuf);
|
|
if (*device == NULL)
|
|
{
|
|
perror("pcap_open_live");
|
|
exit(-1);
|
|
}
|
|
|
|
// 处理数据包
|
|
libnet_context1 = libnet_init(LIBNET_LINK, dev_name, errbuf); // 初始化 libnet
|
|
if (libnet_context1 == NULL)
|
|
{
|
|
perror("libnet_init");
|
|
exit(-1);
|
|
}
|
|
}
|
|
|
|
// 处理数据包
|
|
void process_packet(u_char *arg, const struct pcap_pkthdr *pkthdr, const u_char *packet)
|
|
{
|
|
printf("process_packet\n");
|
|
} |