当前位置:   article > 正文

wireshark 二次开发

wireshark 二次开发

一、 Windows 准备

1、源代码下载 Git:https://github.com/wireshark/wireshark
2、 准备Visual C++
要编译wireshark,开发电脑上应该安装了Visual Studio并包括了Visual C++,请至少安装Visual Studio 2010以减少不必要的麻烦。

visual studio 2019安装教程:https://blog.csdn.net/qq_45782378/article/details/113043087
1、点击新建→项目
2、语言我们选择C++,同时选中下面的空项
在这里插入图片描述
3、右键 点击添加→新建项 选择C++文件(.cpp)
在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
	cout << "Hello World" << endl;
	system("pause");
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

二、 编译一次wireshark源码

https://www.wireshark.org/docs/wsdg_html_chunked/ChSetupWindows.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/667668
推荐阅读
相关标签
  

闽ICP备14008679号