91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

官方源碼 來源于github,解析tcp ,udp等數(shù)據(jù)包

資源截圖

代碼片段和文件信息

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()?<????????}

????????///?
????????///?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)?<????????}

????????///?
????????///?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)?<????????}

????????///?
????????///?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個文件信息

評論

共有 條評論