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
51561d48
Commit
51561d48
authored
Jun 04, 2010
by
Brickner_cp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send Anonymous Statistics in Developer's pack.
parent
e4aaac98
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
72 additions
and
2 deletions
+72
-2
CaptureInvalidPackets.csproj
...ck/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj
+4
-0
Program.cs
...otNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs
+3
-0
CapturingThePacketsWithoutTheCallback.csproj
...tTheCallback/CapturingThePacketsWithoutTheCallback.csproj
+4
-0
Program.cs
...Pack/src/CapturingThePacketsWithoutTheCallback/Program.cs
+3
-0
GatheringStatisticsOnTheNetworkTraffic.csproj
...workTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj
+4
-0
Program.cs
...ack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs
+3
-0
InterpretingThePackets.csproj
.../src/InterpretingThePackets/InterpretingThePackets.csproj
+4
-0
Program.cs
...tNet.DevelopersPack/src/InterpretingThePackets/Program.cs
+3
-0
ObtainingAdvancedInformationAboutInstalledDevices.csproj
.../ObtainingAdvancedInformationAboutInstalledDevices.csproj
+4
-0
Program.cs
...ainingAdvancedInformationAboutInstalledDevices/Program.cs
+3
-0
Program.cs
...tNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs
+1
-1
OpeningAnAdapterAndCapturingThePackets.csproj
...gThePackets/OpeningAnAdapterAndCapturingThePackets.csproj
+4
-0
Program.cs
...ack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs
+3
-0
Program.cs
...DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs
+3
-0
ReadingPacketsFromADumpFile.csproj
...ngPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj
+4
-0
Program.cs
...et.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs
+3
-0
SavingPacketsToADumpFile.csproj
.../SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj
+4
-0
Program.cs
...ersPack/src/SendingASinglePacketWithSendPacket/Program.cs
+3
-0
SendingASinglePacketWithSendPacket.csproj
...tWithSendPacket/SendingASinglePacketWithSendPacket.csproj
+4
-0
Program.cs
...velopersPack/src/SendingPacketsUsingSendBuffer/Program.cs
+3
-0
SendingPacketsUsingSendBuffer.csproj
...cketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj
+4
-0
Program.cs
PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs
+1
-1
No files found.
PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base"
>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
</Reference>
...
...
PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs
View file @
51561d48
...
...
@@ -15,6 +15,9 @@ namespace UsingLinq
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Program.cs
View file @
51561d48
...
...
@@ -9,6 +9,9 @@ namespace CapturingThePacketsWithoutTheCallback
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Core, Version=0.1.0.39245, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=x86"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Core.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs
View file @
51561d48
...
...
@@ -8,6 +8,9 @@ namespace GatheringStatisticsOnTheNetworkTraffic
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/InterpretingThePackets/Program.cs
View file @
51561d48
...
...
@@ -11,6 +11,9 @@ namespace InterpretingThePackets
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Program.cs
View file @
51561d48
...
...
@@ -9,6 +9,9 @@ namespace ObtainingAdvancedInformationAboutInstalledDevices
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the interfaces list
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs
View file @
51561d48
...
...
@@ -9,8 +9,8 @@ namespace ObtainingTheDeviceList
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
Initialize
();
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs
View file @
51561d48
...
...
@@ -9,6 +9,9 @@ namespace OpeningAnAdapterAndCapturingThePackets
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs
View file @
51561d48
...
...
@@ -8,6 +8,9 @@ namespace ReadingPacketsFromADumpFile
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Check command line
if
(
args
.
Length
!=
1
)
{
...
...
PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs
View file @
51561d48
...
...
@@ -8,6 +8,9 @@ namespace SavingPacketsToADumpFile
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Check command line
if
(
args
.
Length
!=
1
)
{
...
...
PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Program.cs
View file @
51561d48
...
...
@@ -12,6 +12,9 @@ namespace SendingASinglePacketWithSendPacket
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Program.cs
View file @
51561d48
...
...
@@ -11,6 +11,9 @@ namespace SendingPacketsUsingSendBuffer
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
// Check the validity of the command line
if
(
args
.
Length
==
0
||
args
.
Length
>
2
)
{
...
...
PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj
View file @
51561d48
...
...
@@ -57,6 +57,10 @@
<CodeAnalysisRuleSet>
AllRules.ruleset
</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PcapDotNet.Analysis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=4b6f3e583145a652, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
</HintPath>
</Reference>
<Reference
Include=
"PcapDotNet.Base, Version=1.0.0.0, Culture=neutral, PublicKeyToken=58cf32d85728e684, processorArchitecture=MSIL"
>
<SpecificVersion>
False
</SpecificVersion>
<HintPath>
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
</HintPath>
...
...
PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs
View file @
51561d48
...
...
@@ -12,8 +12,8 @@ namespace UsingLinq
{
static
void
Main
(
string
[]
args
)
{
// Send anonymous statistics about the usage of Pcap.Net
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
OptIn
=
true
;
PcapDotNet
.
Analysis
.
PcapDotNetAnalysis
.
Initialize
();
// Retrieve the device list from the local machine
IList
<
LivePacketDevice
>
allDevices
=
LivePacketDevice
.
AllLocalMachine
;
...
...
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