• 大小: 7.54KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: a  

资源简介

网络课程设计流量统计,网络流量统计课设

资源截图

代码片段和文件信息

#include “pcap.h“  
#include
#ifndef WIN32
#include 
#include 
#else
#include 
#endif
#include
#include


/*全局变量*/
/*=====================================================*/
int num_packet = 0; //统计的数据包个数
pcap_t *adhandle;
//struct pcap_stat pkt_stat;
struct bpf_program fcode;
pcap_if_t *alldevs *d;
char errbuf[PCAP_ERRBUF_SIZE];
u_int netmask;


/*=====================================================*/

/* 4字节的IP地址 */
typedef struct ip_address{
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;

}ip_address;

/*ip链表*/
typedef struct ip_link{
int number=1;
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;
struct ip_link *next;
}ip_link;
ip_link *head;

评论

共有 条评论