Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pcap-Net
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Pcap-Net
Commits
c69ed184
Commit
c69ed184
authored
Apr 27, 2012
by
Brickner_cp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warnings, Code Analysis and Documentation. 3 warnings left.
parent
b6098579
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
10 additions
and
16 deletions
+10
-16
BitSequence.cs
PcapDotNet/src/PcapDotNet.Base/BitSequence.cs
+1
-0
WiresharkCompareTests.cs
PcapDotNet/src/PcapDotNet.Core.Test/WiresharkCompareTests.cs
+0
-1
WiresharkDatagramComparerVLanTaggedFrame.cs
...Net.Core.Test/WiresharkDatagramComparerVLanTaggedFrame.cs
+0
-1
VLanTaggedFrameTests.cs
...otNet/src/PcapDotNet.Packets.Test/VLanTaggedFrameTests.cs
+0
-1
RandomVLanTaggedFrameExtensions.cs
...tNet.Packets.TestUtils/RandomVLanTaggedFrameExtensions.cs
+0
-1
ClassOfService.cs
PcapDotNet/src/PcapDotNet.Packets/Ethernet/ClassOfService.cs
+1
-1
EthernetBaseDatagram.cs
...t/src/PcapDotNet.Packets/Ethernet/EthernetBaseDatagram.cs
+0
-1
EthernetPayloadDatagrams.cs
...c/PcapDotNet.Packets/Ethernet/EthernetPayloadDatagrams.cs
+0
-1
VLanTaggedFrameDatagram.cs
...rc/PcapDotNet.Packets/Ethernet/VLanTaggedFrameDatagram.cs
+1
-4
VLanTaggedFrameLayer.cs
...t/src/PcapDotNet.Packets/Ethernet/VLanTaggedFrameLayer.cs
+1
-2
PcapDotNet.Packets.csproj
PcapDotNet/src/PcapDotNet.Packets/PcapDotNet.Packets.csproj
+6
-3
No files found.
PcapDotNet/src/PcapDotNet.Base/BitSequence.cs
View file @
c69ed184
...
...
@@ -225,6 +225,7 @@ namespace PcapDotNet.Base
/// <param name="value15">Bits 112-119 of the UInt128.</param>
/// <param name="value16">Bits 120-127 of the UInt128.</param>
/// <returns>A UInt128 whose bits are determined by the input.</returns>
[
System
.
Diagnostics
.
CodeAnalysis
.
SuppressMessage
(
"Microsoft.Design"
,
"CA1025:ReplaceRepetitiveArgumentsWithParamsArray"
)]
public
static
UInt128
Merge
(
byte
value1
,
byte
value2
,
byte
value3
,
byte
value4
,
byte
value5
,
byte
value6
,
byte
value7
,
byte
value8
,
byte
value9
,
byte
value10
,
byte
value11
,
byte
value12
,
byte
value13
,
byte
value14
,
byte
value15
,
byte
value16
)
{
...
...
PcapDotNet/src/PcapDotNet.Core.Test/WiresharkCompareTests.cs
View file @
c69ed184
...
...
@@ -16,7 +16,6 @@ using PcapDotNet.Packets.Icmp;
using
PcapDotNet.Packets.IpV4
;
using
PcapDotNet.Packets.TestUtils
;
using
PcapDotNet.Packets.Transport
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
using
PcapDotNet.TestUtils
;
namespace
PcapDotNet.Core.Test
...
...
PcapDotNet/src/PcapDotNet.Core.Test/WiresharkDatagramComparerVLanTaggedFrame.cs
View file @
c69ed184
...
...
@@ -3,7 +3,6 @@ using System.Linq;
using
System.Xml.Linq
;
using
PcapDotNet.Packets
;
using
PcapDotNet.Packets.Ethernet
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
namespace
PcapDotNet.Core.Test
{
...
...
PcapDotNet/src/PcapDotNet.Packets.Test/VLanTaggedFrameTests.cs
View file @
c69ed184
...
...
@@ -5,7 +5,6 @@ using PcapDotNet.Packets.Ethernet;
using
PcapDotNet.Packets.IpV4
;
using
PcapDotNet.Packets.TestUtils
;
using
PcapDotNet.Packets.Transport
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
namespace
PcapDotNet.Packets.Test
{
...
...
PcapDotNet/src/PcapDotNet.Packets.TestUtils/RandomVLanTaggedFrameExtensions.cs
View file @
c69ed184
using
System
;
using
PcapDotNet.Packets.Ethernet
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
using
PcapDotNet.TestUtils
;
namespace
PcapDotNet.Packets.TestUtils
...
...
PcapDotNet/src/PcapDotNet.Packets/
VLanTaggedFrame
/ClassOfService.cs
→
PcapDotNet/src/PcapDotNet.Packets/
Ethernet
/ClassOfService.cs
View file @
c69ed184
namespace
PcapDotNet.Packets.
VLanTaggedFrame
namespace
PcapDotNet.Packets.
Ethernet
{
/// <summary>
/// IEEE P802.1p.
...
...
PcapDotNet/src/PcapDotNet.Packets/Ethernet/EthernetBaseDatagram.cs
View file @
c69ed184
using
PcapDotNet.Packets.Arp
;
using
PcapDotNet.Packets.IpV4
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
namespace
PcapDotNet.Packets.Ethernet
{
...
...
PcapDotNet/src/PcapDotNet.Packets/Ethernet/EthernetPayloadDatagrams.cs
View file @
c69ed184
using
PcapDotNet.Packets.Arp
;
using
PcapDotNet.Packets.IpV4
;
using
PcapDotNet.Packets.VLanTaggedFrame
;
namespace
PcapDotNet.Packets.Ethernet
{
...
...
PcapDotNet/src/PcapDotNet.Packets/
VLanTaggedFrame
/VLanTaggedFrameDatagram.cs
→
PcapDotNet/src/PcapDotNet.Packets/
Ethernet
/VLanTaggedFrameDatagram.cs
View file @
c69ed184
using
PcapDotNet.Base
;
using
PcapDotNet.Packets.Ethernet
;
namespace
PcapDotNet.Packets.VLanTaggedFrame
namespace
PcapDotNet.Packets.Ethernet
{
/// <summary>
/// IEEE 802.1Q.
...
...
PcapDotNet/src/PcapDotNet.Packets/
VLanTaggedFrame
/VLanTaggedFrameLayer.cs
→
PcapDotNet/src/PcapDotNet.Packets/
Ethernet
/VLanTaggedFrameLayer.cs
View file @
c69ed184
using
System
;
using
PcapDotNet.Base
;
using
PcapDotNet.Packets.Ethernet
;
namespace
PcapDotNet.Packets.
VLanTaggedFrame
namespace
PcapDotNet.Packets.
Ethernet
{
/// <summary>
/// Represents an VLAN Tagged Frame layer.
...
...
PcapDotNet/src/PcapDotNet.Packets/PcapDotNet.Packets.csproj
View file @
c69ed184
...
...
@@ -396,9 +396,9 @@
<Compile
Include=
"Transport\TransportDatagram.cs"
/>
<Compile
Include=
"Transport\UdpDatagram.cs"
/>
<Compile
Include=
"Transport\UdpLayer.cs"
/>
<Compile
Include=
"
VLanTaggedFrame
\ClassOfService.cs"
/>
<Compile
Include=
"
VLanTaggedFrame
\VLanTaggedFrameDatagram.cs"
/>
<Compile
Include=
"
VLanTaggedFrame
\VLanTaggedFrameLayer.cs"
/>
<Compile
Include=
"
Ethernet
\ClassOfService.cs"
/>
<Compile
Include=
"
Ethernet
\VLanTaggedFrameDatagram.cs"
/>
<Compile
Include=
"
Ethernet
\VLanTaggedFrameLayer.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"..\PcapDotNet.snk"
/>
...
...
@@ -431,6 +431,9 @@
<Link>
PcapDotNet.CodeAnalysisDictionary.xml
</Link>
</CodeAnalysisDictionary>
</ItemGroup>
<ItemGroup>
<Folder
Include=
"VLanTaggedFrame\"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment