// SHAO.cpp : 定义控制台应用程序的入口点。
#include "stdafx.h"
#include<iostream>
using namespace std;
//#pragma warning( disable : 4996 )
#include <stdlib.h>
#include <stdio.h>
#include <pcap.h>
int main(int argc,char **argv)
{
pcap_if_t *alldevs;
pcap_if_t *d;
int inum;
int i=0;
pcap_t *adhandle;
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t *fp;
u_char packet[60];
/* 获取本机设备列表 */
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL, &alldevs, errbuf) == -1)
{
fprintf(stderr,"Error in pcap_findalldevs: %s\n", errbuf);
getchar();
exit(1);
}
/* 打印列表 */
本内容试读结束,登录后可阅读更多
下载后可阅读完整内容,剩余4页未读,立即下载