资源简介
(1) 捕获网络中的IP数据包,解析数据包的内容,并将结果显示出来。
(2) 显示内容包括:捕获的IP包的版本、源地址、目的地址、源端口、目的端口、协议类型、IP包总长度、IP包头总长度、IP数据包长度等内容。
(3) 设置停止标志,当程序接受到停止命令时即停止。
代码片段和文件信息
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Management;
using System.Threading;
using System.IO;
namespace SimpleSniff
{
public class SniffWindow : System.Windows.Forms.Form
{
private System.Windows.Forms.ListBox resultListBox;
private System.Windows.Forms.Button startButton;
private System.Windows.Forms.Button stopButton;
private System.Windows.Forms.ComboBox addressComboBox;
private System.ComponentModel.Container components = null;
private System.Windows.Forms.Button clearButton;
private Label label1;
private Label label2;
private Label label3;
private Label label4;
private Button saveButton;
private Label label5;
private SniffSocket mySniffSocket;
public SniffWindow()
{
InitializeComponent();
}
protected override void Dispose(bool disposing) //为 true 则释放托管资源和非托管资源;为 false 则仅释放非托管资源。
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.resultListBox = new System.Windows.Forms.ListBox();
this.startButton = new System.Windows.Forms.Button();
this.stopButton = new System.Windows.Forms.Button();
this.addressComboBox = new System.Windows.Forms.ComboBox();
this.clearButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.saveButton = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// resultListBox
//
this.resultListBox.ItemHeight = 12;
this.resultListBox.Location = new System.Drawing.Point(4 35);
this.resultListBox.Name = “resultListBox“;
this.resultListBox.Size = new System.Drawing.Size(552 280);
this.resultListBox.TabIndex = 0;
this.resultListBox.DoubleClick += new System.EventHandler(this.resultListBox_DoubleClick);
//
// startButton
//
this.startButton.Location = new System.Drawing.Point(12 331);
this.startButton.Name = “startButton“;
this.startButton.Size = new System.Drawing.Size(75 23);
this.startButton.TabIndex = 1;
this.startButton.Te
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 47616 2018-01-05 10:19 SniffScoket\.vs\SIMPLESNIFF\v14\.suo
文件 369 2009-06-13 20:48 SniffScoket\APP.CS
文件 1078 2002-06-29 12:23 SniffScoket\APP.ICO
文件 2426 2002-06-29 12:23 SniffScoket\ASSEMBLYINFO.CS
文件 32768 2018-01-04 17:26 SniffScoket\BIN\DEBUG\SimpleSniff.exe
文件 42496 2018-01-04 17:26 SniffScoket\BIN\DEBUG\SimpleSniff.pdb
文件 21680 2018-01-05 09:38 SniffScoket\BIN\DEBUG\SimpleSniff.vshost.exe
文件 490 2016-07-16 19:44 SniffScoket\BIN\DEBUG\SimpleSniff.vshost.exe.manifest
文件 28672 2009-06-13 21:13 SniffScoket\BIN\RELEASE\SimpleSniff.exe
文件 5632 2005-12-08 14:51 SniffScoket\BIN\RELEASE\SimpleSniff.vshost.exe
文件 2238 2009-06-13 20:08 SniffScoket\ClassDiagram1.cd
文件 11850 2018-01-04 17:04 SniffScoket\MainForm.cs
文件 5814 2018-01-04 17:04 SniffScoket\MainForm.resx
文件 1230 2018-01-01 22:33 SniffScoket\OBJ\DEBUG\DesignTimeResolveAssemblyReferences.cache
文件 6184 2018-01-05 09:38 SniffScoket\OBJ\DEBUG\DesignTimeResolveAssemblyReferencesInput.cache
文件 847 2018-01-05 09:38 SniffScoket\OBJ\DEBUG\SimpleSniff.csproj.FileListAbsolute.txt
文件 843 2018-01-04 17:22 SniffScoket\OBJ\DEBUG\SimpleSniff.csproj.GenerateResource.Cache
文件 1340 2018-01-01 21:06 SniffScoket\OBJ\DEBUG\SimpleSniff.csprojResolveAssemblyReference.cache
文件 32768 2018-01-04 17:26 SniffScoket\OBJ\DEBUG\SimpleSniff.exe
文件 180 2018-01-04 17:22 SniffScoket\OBJ\DEBUG\SimpleSniff.PacketDisplay.resources
文件 42496 2018-01-04 17:26 SniffScoket\OBJ\DEBUG\SimpleSniff.pdb
文件 180 2018-01-04 17:14 SniffScoket\OBJ\DEBUG\SimpleSniff.SniffWindow.resources
文件 838 2009-06-13 21:13 SniffScoket\OBJ\RELEASE\SimpleSniff.csproj.GenerateResource.Cache
文件 28672 2009-06-13 21:13 SniffScoket\OBJ\RELEASE\SimpleSniff.exe
文件 180 2009-06-13 21:13 SniffScoket\OBJ\RELEASE\SimpleSniff.PacketDisplay.resources
文件 180 2009-06-13 21:13 SniffScoket\OBJ\RELEASE\SimpleSniff.SniffWindow.resources
文件 1227 2009-07-08 15:31 SniffScoket\OBJ\SimpleSniff.csproj.FileListAbsolute.txt
文件 15170 2018-01-04 17:26 SniffScoket\PacketDisplay.cs
文件 5814 2018-01-04 17:22 SniffScoket\PacketDisplay.resx
文件 5584 2018-01-01 21:01 SniffScoket\SIMPLESNIFF.CSPROJ
............此处省略27个文件信息
相关资源
- C#做的拼图小游戏源代码
- C#动态添加菜单实现权限管理
- C# IO写入,输出
- C# 二手交易系统 二手交易系统
- 从数据库读取数据到坐标轴为时间的
- C#中以时间作为chart的X坐标轴间隔
- C# 不依赖Office读取Word、PPTdocdocxpptpp
- winform C# 远程视频流媒体播放器
- 解决GDAL读取shp文件属性和中文乱码问
- 使用c#将pdf文件转换成图片文件
- C# 利用log4net 把日志写入到数据库
- C# SerialPort IO操作 支持大数据收发
- modbus上位机C#类库
- ArcEngine+C#统计图表柱状图,饼状图
- 佳博条码打印机C#
- winform多线程
- wpf界面切换特效
- C#多线程编程实战Code源代码
- C# winfrom批量添加文字。图片水印
- c# TTS语音 附带 DotNetSpeech.dll语音类库
- 一个用c#文件流写的通讯录
- C# 将图片文件转换成字节流存储在T
- 实现自定义的Web服务器(C#)
- 微信公众平台 网页授权获取用户基本
- C#做一个悬浮窗口程序
- C# 命名管道 异步通信的
- C#数组的随机排序源码
- 基于C#窗体的五子棋游戏简单Demo
- 基于c#的串口通信获取温湿度传感器数
- C#&Csgl进行OpenGL编程
评论
共有 条评论