savedate.c文件
#include <pcap.h>
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <sys/time.h>
#include <signal.h>
FILE * savefp = NULL ; //保存数据包的文件句柄。
int filelen = 0 ; //记录当前文件大小
#define FILE_SIZE_OUT 10*1024*1024 //文件最大值
struct timeval tpstart, tpend;
long timeuse =0;
long packets =0;
long all_pkt = 0;
int pkt_len = 128;
void print_stat()
{
gettimeofday(&tpstart, NULL);
gettimeofday(&tpend, NULL);
printf("ens11f0 rec %ld packets\n", packets)