资源简介
官方源码 来源于github,解析tcp ,udp等数据包
代码片段和文件信息
using System;
namespace PcapDotNet.base
{
///
/// Useful functions for sequences of bits.
///
public static class BitSequence
{
///
/// Casts a bit to a byte.
/// True becomes 1 and false becomes 0.
///
/// Bit 7 of the byte.
/// 1 for true 0 for false.
public static byte ToByte(this bool value)
{
return value ? (byte)1 : (byte)0;
}
///
/// Merges 2 bits to a byte.
/// Bits should be arranged from the most significant to the least.
///
/// Bit 6 of the byte.
/// Bit 7 of the byte.
/// A byte with the 2 least significant bits determined by the input.
public static byte Merge(bool value1 bool value2)
{
return (byte)((value1.ToByte() << 1) | value2.ToByte());
}
///
/// Merges 3 bits to a byte.
/// Bits should be arranged from the most significant to the least.
///
/// Bit 5 of the byte.
/// Bit 6 of the byte.
/// Bit 7 of the byte.
/// A byte with the 3 least significant bits determined by the input.
public static byte Merge(bool value1 bool value2 bool value3)
{
return (byte)((Merge(value1 value2) << 1) | value3.ToByte());
}
///
/// Merges 4 bits to a byte.
/// Bits should be arranged from the most significant to the least.
///
/// Bit 4 of the byte.
/// Bit 5 of the byte.
/// Bit 6 of the byte.
/// Bit 7 of the byte.
/// A byte with the 4 least significant bits determined by the input.
[System.Diagnostics.CodeAnalysis.SuppressMessage(“Microsoft.Design“ “CA1025:ReplaceRepetitiveArgumentsWithParamsArray“)]
public static byte Merge(bool value1 bool value2 bool value3 bool value4)
{
return (byte)((Merge(value1 value2 value3) << 1) | value4.ToByte());
}
///
/// Merges 5 bits to a byte.
/// Bits should be arranged from the most significant to the least.
///
/// Bit 3 of the byte.
/// Bit 4 of the byte.
/// Bit 5 of the byte.
/// Bit 6 of the byte.
/// Bit 7 of the byte.
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-02-06 13:07 Pcap.Net-master\
文件 345 2016-02-06 13:07 Pcap.Net-master\.gitignore
目录 0 2016-02-06 13:07 Pcap.Net-master\BuildProcessTemplates\
文件 59198 2016-02-06 13:07 Pcap.Net-master\BuildProcessTemplates\DefaultTemplate.11.1.xaml
文件 22647 2016-02-06 13:07 Pcap.Net-master\BuildProcessTemplates\LabDefaultTemplate.11.xaml
文件 7014 2016-02-06 13:07 Pcap.Net-master\BuildProcessTemplates\UpgradeTemplate.xaml
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\
文件 4964 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\CaptureInvalidPackets.csproj
文件 257 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\CaptureInvalidPackets.csproj.vspscc
文件 3841 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\Program.cs
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\Properties\
文件 1437 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\Properties\AssemblyInfo.cs
文件 144 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CaptureInvalidPackets\app.config
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\
文件 5275 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\CapturingThePacketsWithoutTheCallback.csproj
文件 257 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\CapturingThePacketsWithoutTheCallback.csproj.vspscc
文件 3254 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\Program.cs
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\Properties\
文件 1469 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\Properties\AssemblyInfo.cs
文件 144 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\CapturingThePacketsWithoutTheCallback\app.config
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\
文件 4711 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\GatheringStatisticsOnTheNetworkTraffic.csproj
文件 257 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\GatheringStatisticsOnTheNetworkTraffic.csproj.vspscc
文件 3545 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\Program.cs
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\Properties\
文件 1471 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\Properties\AssemblyInfo.cs
文件 144 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\GatheringStatisticsOnTheNetworkTraffic\app.config
目录 0 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\InterpretingThePackets\
文件 5245 2016-02-06 13:07 Pcap.Net-master\PcapDotNet.DevelopersPack\src\InterpretingThePackets\InterpretingThePackets.csproj
............此处省略820个文件信息
相关资源
- 超市会员管理系统-数据库课程设计
- 学生信息管理系统C#winform实现课程设
- C# MySchool 抽象工厂,三层架构模式,
- SignalR实现小程序即时聊天 C# asp.net
- 基于Visual C#的DirectX开发
- C# 用于标准谷歌KML文件解析源码
- 简单的基于C#的教材管理系统
- c#编程100个源码
- c#+sqlserver酒店管理系统 源码
- C#在线聊天系统客户端+服务器
- C#文件管理
- C#与数据库课程设计图书管理系统+报
- C#相册
- C#项目开发之文档管理系统
- 智能家居检测控制-C#编写的上位机软
- C# VS2008+Access学生信息管理系统
- 基于C/S架构的学生选课系统(C#)
- C#超市仓库管理系统sql server数据库
- C#最新KZB智慧医疗健康评估系统源码
- C# ArcGISEngine 分区统计最小二乘
- C# DLL源码查看器
- asp.net做的小的旅游网站
- C# 宿舍管理系统 毕业设计
- C#实现的全景图拼接两张图片合并成一
- 简单的超市管理系统
- MySkin V1.0
- 影碟租赁管理系统C# 可视化
- C#物流管理系统源码
- C#文件加密解密及备份恢复工具
- C# Winform 双层窗体
评论
共有 条评论